mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Edit live query results table width for UI layout (#416)
- Fixes #413. Reintroduce a max-width for the.has-sidebar selector. This prevents the query results table from horizontally overflowing the screen's width. - Adjust the positioning of the expanded live query results table to fit the new layout
This commit is contained in:
parent
dbf027c912
commit
54c2b0b8df
2 changed files with 4 additions and 3 deletions
|
|
@ -161,11 +161,11 @@
|
|||
|
||||
@keyframes growFullScreen {
|
||||
100% {
|
||||
top: $pad-half;
|
||||
top: 60px;
|
||||
right: $pad-half;
|
||||
bottom: $pad-half;
|
||||
left: calc(#{$nav-tablet-width} + #{$pad-half});
|
||||
max-width: calc(100vw - #{$nav-tablet-width} - #{$pad-half} - #{$pad-half});
|
||||
left: $pad-half;
|
||||
max-width: calc(100vw - #{$pad-half} - #{$pad-half});
|
||||
max-height: 100vh;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,6 +62,7 @@ a {
|
|||
.has-sidebar & {
|
||||
margin-right: 0;
|
||||
min-width: 610px;
|
||||
max-width: calc(100vw - #{$pad-body} - #{$pad-body} - #{$pad-borders} - #{$sidepanel-width});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue