fix(static): fix not loading statics files

This commit is contained in:
Romain J 2020-06-19 22:15:09 +02:00
parent d8895530d1
commit 277342140c
12 changed files with 31 additions and 3 deletions

BIN
static/images/gnous.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -1,5 +1,4 @@
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url(uikit/uikit.css);
@import url(uikit/uikit.min.css);
html[data-theme="dark"] .uk-offcanvas .uk-nav > li > a.active {
color: #16171a; }
html[data-theme="dark"] .uk-logo img {
@ -29,6 +28,8 @@ html[data-theme="dark"] .uk-card {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap; }
html[data-theme="dark"] .uk-card-secondary {
background: #23272A; }
html[data-theme="dark"] .uk-border-circle {
box-shadow: -5px -5px 12px 0 rgba(41, 41, 41, 0.6), 5px 5px 12px 0 rgba(0, 0, 0, 0.3); }
html[data-theme="dark"] .uk-h1, html[data-theme="dark"] h1 {
@ -386,4 +387,12 @@ html[data-theme="light"] .subtitle-text {
font-size: 1.2em;
opacity: 0.7; }
.uk-label-success {
background-color: rgb(22, 101, 72);
}
.uk-label-warning {
background-color: rgb(145, 66, 4);
}
/*# sourceMappingURL=index.css.map */

1
static/stylesheets/css/index.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -35,4 +35,12 @@
.uk-border-circle {
box-shadow: -5px -5px 12px 0 rgba(255, 255, 255, 0.5), 5px 5px 12px 0 rgba(0, 0, 0, 0.1); }
.uk-label-success {
background-color: rgb(22, 101, 72);
}
.uk-label-warning {
background-color: rgb(145, 66, 4);
}
/*# sourceMappingURL=uikit_fix.css.map */

View file

@ -1,4 +1,3 @@
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import "uikit/uikit.css";
@import "variables";
@import "uikit_fix";

View file

@ -49,6 +49,9 @@
white-space: nowrap;
}
}
.uk-card-secondary {
background: #23272A;
}
.uk-border-circle {
box-shadow: map_get(map_get($themes, $theme), 'shadow');
@ -151,4 +154,12 @@ html[data-theme="dark"] {
html[data-theme="light"] {
@include render_theme('light')
}
.uk-label-success {
background-color: rgb(22, 101, 72);
}
.uk-label-warning {
background-color: rgb(145, 66, 4);
}