diff --git a/sass/style.scss b/sass/style.scss
index 79402b6..121ad2d 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -144,13 +144,13 @@ body.noscroll {
.image {
height: 2rem;
width: 2rem;
- background-image: url("/static/menu-closed.svg");
+ background-image: url("/static/img/menu-closed.svg");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
&.open {
- background-image: url("/static/menu-open.svg");
+ background-image: url("/static/img/menu-open.svg");
}
}
}
@@ -318,7 +318,7 @@ footer {
width: $logo-radius*2;
border: 1px solid #5d6e81;
border-radius: 50%;
- background-image: url("/static/pedf-logo-white.svg");
+ background-image: url("/static/img/pedf-logo-white.svg");
background-position: center;
background-size: 75%;
background-repeat: no-repeat;
@@ -326,6 +326,16 @@ footer {
}
}
+@media only screen and (min-width: $size-mobile) {
+ .faq-list .faq {
+ &:before,
+ &:last-child:after {
+ width: 100%;
+ left: 0;
+ }
+ }
+}
+
@media only screen and (max-width: $size-mobile) {
.intro header {
diff --git a/static/favicon.png b/static/img/favicon.png
similarity index 100%
rename from static/favicon.png
rename to static/img/favicon.png
diff --git a/static/logo.svg b/static/img/logo.svg
similarity index 100%
rename from static/logo.svg
rename to static/img/logo.svg
diff --git a/static/menu-closed.svg b/static/img/menu-closed.svg
similarity index 100%
rename from static/menu-closed.svg
rename to static/img/menu-closed.svg
diff --git a/static/menu-open.svg b/static/img/menu-open.svg
similarity index 100%
rename from static/menu-open.svg
rename to static/img/menu-open.svg
diff --git a/static/pedf-logo-white.svg b/static/img/pedf-logo-white.svg
similarity index 100%
rename from static/pedf-logo-white.svg
rename to static/img/pedf-logo-white.svg
diff --git a/static/placeholder-logo.svg b/static/img/placeholder-logo.svg
similarity index 100%
rename from static/placeholder-logo.svg
rename to static/img/placeholder-logo.svg