Skip to content

Commit 3d01682

Browse files
authored
fix(site): enlarge header logo (#123)
1 parent d310f65 commit 3d01682

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

theme/sponsors.css

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,22 @@
7373
}
7474

7575
/* Keep the book title accessible while displaying the RCN brand in its place. */
76+
:root {
77+
--menu-bar-height: 8rem;
78+
}
79+
7680
.menu-title {
77-
background: url('../images/rcn-logo.svg') center / auto 2rem no-repeat;
81+
background: url('../images/rcn-logo.svg') center / auto 6.5rem no-repeat;
7882
color: transparent;
7983
user-select: none;
8084
}
85+
86+
@media only screen and (max-width: 600px) {
87+
:root {
88+
--menu-bar-height: 5rem;
89+
}
90+
91+
.menu-title {
92+
background-size: auto 3.5rem;
93+
}
94+
}

0 commit comments

Comments
 (0)