mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
4b5891edbc
- Add `$min-app-width: 1200px` to define the minimum width of the Fleet UI. - Remove sort form the "Query name" column in the "Pack" tables on the **Host details** page - Set static widths all column in the "Pack" tables on the **Host details** page except the "Query name" column to support the new minimum width - Set static widths for all columns in the "Queries" table except the "Name" and "Author" columns to support the new minimum width
26 lines
402 B
SCSS
26 lines
402 B
SCSS
.app-wrap {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
min-width: $app-min-width;
|
|
}
|
|
|
|
.core-wrapper {
|
|
flex-grow: 1;
|
|
margin: 0;
|
|
padding: 0;
|
|
position: relative;
|
|
background-color: $core-white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.site-nav {
|
|
background: $gradients-dark-gradient;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 100;
|
|
}
|