21 lines
308 B
SCSS
Vendored
21 lines
308 B
SCSS
Vendored
@import "./uikit";
|
|
|
|
// TODO import only the used animations
|
|
@import "./animate-css";
|
|
|
|
@import "./components/toggle";
|
|
|
|
$footer-height: 80px;
|
|
|
|
#content {
|
|
min-height: calc(100vh - #{$navbar-nav-item-height + $footer-height});
|
|
}
|
|
|
|
footer {
|
|
line-height: $footer-height;
|
|
}
|
|
|
|
.flex-grow {
|
|
flex-grow: 1;
|
|
}
|