update(Dashboard Grid): does not show the overlay when resizing the widget and adds different grid sizes for different viewports

This commit is contained in:
SimonGschnell
2025-03-26 14:59:28 +01:00
parent b52993f7cc
commit 727b951bbc
2 changed files with 32 additions and 4 deletions
+25
View File
@@ -23,6 +23,31 @@
:root {
--fhc-dashboard-grid-size: 4;
}
@media(max-width: 1400px) {
:root {
--fhc-dashboard-grid-size: 4;
}
}
@media(max-width: 1200px) {
:root {
--fhc-dashboard-grid-size: 3;
}
}
@media(max-width: 992px) {
:root {
--fhc-dashboard-grid-size: 2;
}
}
@media(max-width: 768px) {
:root {
--fhc-dashboard-grid-size: 2;
}
}
@media(max-width: 577px) {
:root {
--fhc-dashboard-grid-size: 1;