1
0

Added animate.css & changed sass libraries import

This commit is contained in:
2020-05-18 23:18:07 +02:00
parent f6e409e7d5
commit 681e23e7a3
6 changed files with 455 additions and 405 deletions

1
resources/sass/_animate-css.scss vendored Normal file
View File

@@ -0,0 +1 @@
@use "~animate.css/animate";

15
resources/sass/_uikit.scss vendored Normal file
View File

@@ -0,0 +1,15 @@
// 1. Your custom variables and variable overwrites.
// $global-link-color: #DA7D02;
// 2. Import default variables and available mixins.
@import "~uikit/src/scss/variables-theme";
@import "~uikit/src/scss/mixins-theme";
// 3. Your custom mixin overwrites.
// @mixin hook-card() { color: #000; }
// 4. Import UIkit.
@import "~uikit/src/scss/uikit-theme";
// uikit overrides, mainly fixes of colors due to dark theme
@import "uikitOverrides";

View File

@@ -1,18 +1,7 @@
// 1. Your custom variables and variable overwrites.
// $global-link-color: #DA7D02;
@import "./uikit";
// 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";
// TODO import only the used animations
@import "./animate-css";
@import "./components/toggle";
@@ -25,3 +14,7 @@ $footer-height: 80px;
footer {
line-height: $footer-height;
}
.flex-grow {
flex-grow: 1;
}