fleet/frontend/layouts/CoreLayout/_styles.scss
noahtalerman 4b5891edbc
Add minimum width for Fleet UI and "Pack" tables on "Host details" page and "Queries" table (#1701)
- 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
2021-08-18 09:17:16 -04:00

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;
}