Skip to content

Commit f75befa

Browse files
authored
Modify banner styling (#1328)
* define variable for navbar z-index * modify banner styling * wrapper for banner * override Docsy's navbar z-index * add comment * modify hero section padding values * keep media queries applied * Removed docsy submodule * update docsy submodule * adjust top for banner * adjust the top values on for small screens * make banner relative * remove banner container * correct indentation * add comment for change
1 parent 63ad871 commit f75befa

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

assets/scss/_grpc.scss

+16-3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ sections site wide to the original site's background svg.
4444
display: none;
4545
}
4646

47+
// use variable for navbar z-index as banner z-index depends on it
48+
.td-navbar {
49+
z-index: $navbar-z-index;
50+
}
51+
4752
// This adds rounded corners to the search inputs, since a Docsy
4853
// flag affecting these and other elements has been disabled.
4954
.td-search-input {
@@ -229,17 +234,25 @@ c - Component (Aware of its content/context...)
229234
// Object
230235
.o-banner {
231236
width: 100%;
232-
position: fixed;
233-
margin-left: -15px;
237+
position: relative;
234238
padding-top: 15px;
235-
z-index: 32;
239+
// keep banner's z-index value less than the navbar, so that banner moves beneath the navbar when user scrolls the page
240+
z-index: $navbar-z-index - 1;
236241
top: 4rem;
237242
background: $light;
238243
text-align: center;
239244

240245
& p {
241246
padding: 0.5rem;
242247
}
248+
padding-bottom: 0.01rem;
249+
}
250+
251+
// Ensure no empty space left when navbar changes it's position from fixed to relative on small screens
252+
@include media-breakpoint-down(sm){
253+
.o-banner{
254+
top: 0rem;
255+
}
243256
}
244257

245258
.o-icon {

assets/scss/_variables_project.scss

+2
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ $display4-weight: $_font-weight-light;
1717
$link-color: #379c9c;
1818

1919
$enable-rounded: false;
20+
21+
$navbar-z-index: 32;

layouts/shortcodes/page/header.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{{ $title := $.Page.Params.title -}}
22
{{ $desc := $.Page.Params.description | markdownify -}}
33
<div class="text-left">
4-
<h1 class="display-1 mb-5">
4+
<h1 class="display-1">
55
{{- $title -}}
66
</h1>
77

88
{{- with $desc -}}
9-
<h3 class="font-weight-light">
9+
<h3 class="font-weight-light mt-5">
1010
{{- . -}}
1111
</h3>
1212
{{ end -}}
13-
</div>
13+
</div>

0 commit comments

Comments
 (0)