We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cea07ed commit d885989Copy full SHA for d885989
src/components/layout/Header.vue
@@ -245,6 +245,7 @@
245
<register-modal :show="showRegister" @close="showRegister = false" />
246
</div>
247
</header>
248
+ <div v-if="motdData && motdData.motd_html.length && !hideAnnnouncement" id="motd-spacer"></div>
249
</template>
250
251
<script>
@@ -1003,8 +1004,10 @@ header {
1003
1004
border-bottom: 1px solid $breadcrumbs-border-color;
1005
margin-bottom: $breadcrumbs-bottom-margin;
1006
max-height: 3.2rem;
- overflow-y: scroll;
1007
+ overflow-y: auto;
1008
width: 100%;
1009
+ position: relative;
1010
+ top: -1px;
1011
1012
@include break-mobile-sm {
1013
font-size: $font-size-sm;
@@ -1022,4 +1025,5 @@ header {
1022
1025
}
1023
1026
1024
1027
1028
+#motd-spacer { height: 1rem; }
1029
</style>
0 commit comments