Skip to content

Commit dc78fc5

Browse files
committed
Hide version in header on small devices
1 parent d020595 commit dc78fc5

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

supplemental-ui/css/site-extra.css

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,15 @@ body {
1212
padding-right: .5ex;
1313
}
1414
.navbar-brand .version {
15-
color: rgba(0, 0, 0, 0.33);
16-
padding-left: 1em;
17-
font-weight: 400;
15+
display: none;
16+
}
17+
@media screen and (min-width: 1024px) {
18+
.navbar-brand .version {
19+
color: rgba(0, 0, 0, 0.33);
20+
padding-left: 1em;
21+
font-weight: 400;
22+
display: inline;
23+
}
1824
}
1925

2026
.doc h1, .doc h2, .doc h3, .doc h4, .doc h5, .doc h6 {

0 commit comments

Comments
 (0)