diff --git a/public/css/app.css b/public/css/app.css
index 8f03d64..65e767e 100644
--- a/public/css/app.css
+++ b/public/css/app.css
@@ -19,7 +19,7 @@ nav.breadcrumb.is-fixed-top {
left: 0;
position: fixed;
right: 0;
- z-index: 30;
+ z-index: 0;
top: 3.25rem;
height: 3.25rem;
}
@@ -44,10 +44,22 @@ main.has-top-padding {
overflow-y: scroll;
overflow-x: hidden;
width: 100%;
- position: fixed;
+ position: fixed;
z-index: 15;
}
main.chisma-abierta {
padding-top: 25.5rem !important;
-}
\ No newline at end of file
+}
+
+@media screen and (min-width: 1024px) {
+ .hide-when-widescreen {
+ display: none;
+ }
+}
+
+@media screen and (max-width: 1023px) {
+ .hide-when-narrowscreen {
+ display: none;
+ }
+}
diff --git a/public/js/app.js b/public/js/app.js
index a4d0e24..6a49af7 100644
--- a/public/js/app.js
+++ b/public/js/app.js
@@ -7,8 +7,10 @@ Vue.component('nav-bar', {
-
$
@@ -20,9 +22,19 @@ Vue.component('nav-bar', {