Fix dashboard panel spacing
This commit is contained in:
@@ -193,12 +193,24 @@ onMount(() => {
|
||||
overflow: auto;
|
||||
padding: 6px;
|
||||
}
|
||||
.size_1 { width: 400px; }
|
||||
.size_1 > .card_component { max-height: 400px; }
|
||||
.size_2 { width: 800px; }
|
||||
.size_2 > .card_component { max-height: 600px; }
|
||||
.size_3 { width: 1200px; }
|
||||
.size_3 > .card_component { max-height: 800px; }
|
||||
.size_1 {
|
||||
width: 500px;
|
||||
}
|
||||
.size_1 > .card_component {
|
||||
max-height: 400px;
|
||||
}
|
||||
.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 {
|
||||
flex: 0 0 auto;
|
||||
|
||||
Reference in New Issue
Block a user