1
0
Fork 0
mirror of https://github.com/Findus23/acronomy.git synced 2024-09-19 15:33:45 +02:00

fix breakpoints

This commit is contained in:
Lukas Winkler 2020-07-29 14:48:00 +02:00
parent 4c98e98dce
commit 006dbd2e3b
Signed by: lukas
GPG key ID: 54DE4D798D244853
2 changed files with 3 additions and 4 deletions

View file

@ -14,7 +14,7 @@ def get_css(debug=False):
sourcemap_name = "css_sourcemap" if debug else str(sourcemap)
css, sourcemap_text = sass.compile(
filename=str(inputfile),
output_style="compressed",
output_style="nested" if debug else "compressed",
include_paths=[str(inputdir), str(basedir)],
source_map_filename=sourcemap_name,
source_map_contents=True

View file

@ -1,14 +1,13 @@
footer {
margin-top: 1rem;
.navbar-nav {
justify-content: space-between;
width: 100%;
@include media-breakpoint-down(xs) {
@include media-breakpoint-down(sm) {
flex-direction: column !important;
text-align: center;
}
}
}