14 lines
426 B
SCSS
Raw Normal View History

/// Contains application level basic and standard styles for commonly used HTML elements
$app-container-offset-speed: $banner-animation-speed;
.app-container {
2019-08-31 20:51:14 -07:00
margin-top: $application-navbar-static-height;
margin-bottom: $application-navbar-static-height;
transition: margin $app-container-offset-speed ease;
&.banner-alert-offset {
2019-08-31 20:51:14 -07:00
margin-top: $application-navbar-static-height + $banner-alerts-height;
}
}