diff --git a/skolehjem/public/css/admin.css b/skolehjem/public/css/admin.css index a7bd23d..4ad42b5 100644 --- a/skolehjem/public/css/admin.css +++ b/skolehjem/public/css/admin.css @@ -469,6 +469,10 @@ a { --toggleSize: 1.25rem; } +.hide { + display: block !important; +} + /*! * Font Awesome Free 5.13.1 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) diff --git a/skolehjem/public/css/webapp.css b/skolehjem/public/css/webapp.css index ab22e31..a39e0c1 100644 --- a/skolehjem/public/css/webapp.css +++ b/skolehjem/public/css/webapp.css @@ -469,6 +469,10 @@ a { --toggleSize: 1.25rem; } +.hide { + display: block !important; +} + /*! * Font Awesome Free 5.13.1 by @fontawesome - https://fontawesome.com * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) diff --git a/skolehjem/resources/sass/app/app.scss b/skolehjem/resources/sass/app/app.scss index 9088b04..077d616 100644 --- a/skolehjem/resources/sass/app/app.scss +++ b/skolehjem/resources/sass/app/app.scss @@ -36,5 +36,8 @@ // Checkboxes @import "forms/checkboxes"; +// Hide/Show Menu +@import "general/hide"; + @import "../vendor/font-awesome/fontawesome"; @import "../vendor/font-awesome/solid"; diff --git a/skolehjem/resources/sass/app/general/_hide.scss b/skolehjem/resources/sass/app/general/_hide.scss index bc29097..9abbdf7 100644 --- a/skolehjem/resources/sass/app/general/_hide.scss +++ b/skolehjem/resources/sass/app/general/_hide.scss @@ -1,3 +1,3 @@ .hide { - color: yellow; + display: block !important; }