Fix dashboard panel spacing

This commit is contained in:
2025-11-03 19:16:55 +01:00
parent 7de2fe21ac
commit aa29de9029

View File

@@ -193,12 +193,24 @@ onMount(() => {
overflow: auto; overflow: auto;
padding: 6px; padding: 6px;
} }
.size_1 { width: 400px; } .size_1 {
.size_1 > .card_component { max-height: 400px; } width: 500px;
.size_2 { width: 800px; } }
.size_2 > .card_component { max-height: 600px; } .size_1 > .card_component {
.size_3 { width: 1200px; } max-height: 400px;
.size_3 > .card_component { max-height: 800px; } }
.size_2 {
width: 1008px; /* Add 8px to account for gap between cards */
}
.size_2 > .card_component {
max-height: 600px;
}
.size_3 {
width: 1516px; /* Add 16px to account for two gaps between cards */
}
.size_3 > .card_component {
max-height: 800px;
}
.title_box { .title_box {
flex: 0 0 auto; flex: 0 0 auto;