1
0

First commit

This commit is contained in:
2020-04-29 23:58:18 +02:00
commit f3230a32ce
108 changed files with 77210 additions and 0 deletions

27
resources/sass/app.scss vendored Normal file
View File

@@ -0,0 +1,27 @@
// 1. Your custom variables and variable overwrites.
// $global-link-color: #DA7D02;
// 2. Import default variables and available mixins.
@import "~uikit/src/scss/variables-theme.scss";
@import "~uikit/src/scss/mixins-theme.scss";
// 3. Your custom mixin overwrites.
// @mixin hook-card() { color: #000; }
// 4. Import UIkit.
@import "~uikit/src/scss/uikit-theme.scss";
// uikit overrides, mainly fixes of colors due to dark theme
@import "uikitOverrides";
@import "./components/toggle";
$footer-height: 80px;
#content {
min-height: calc(100vh - #{$navbar-nav-item-height + $footer-height});
}
footer {
line-height: $footer-height;
}