mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
11 lines
332 B
SCSS
11 lines
332 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 banner. (e.g. sandbox mode)
|
|
// Without it the main content pushes the banner off the page.
|
|
overflow: auto;
|
|
animation: fade-in 250ms ease-out;
|
|
}
|