mirror of
https://github.com/fleetdm/fleet
synced 2026-05-01 02:17:21 +00:00
10 lines
314 B
SCSS
10 lines
314 B
SCSS
.main-content {
|
|
padding: $pad-xlarge;
|
|
background-color: $core-white;
|
|
flex-grow: 1;
|
|
// overflow: auto allows for horizontal scrolling
|
|
// of the main-content when there is a sidebar.
|
|
// Without it the main content pushes the sidebar off the page.
|
|
overflow: auto;
|
|
animation: fade-in 250ms ease-out;
|
|
}
|