We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b76927a commit a2a475cCopy full SHA for a2a475c
1 file changed
frontend/components/DefaultHeader.vue
@@ -139,11 +139,20 @@ async function signOut() {
139
display: flex;
140
align-items: center;
141
justify-content: space-between;
142
+
143
+ // Prevent nav links from being clickable outside the panel's border radius.
144
+ overflow: hidden;
145
}
146
147
.logo {
- margin: 1rem;
148
font-size: 2em;
149
150
+ // Apply padding to the image instead of its link so the link's area matches
151
+ // the image's area. This also lets screen readers read the image's alt text
152
+ // when hovering anywhere in the link rather than just the image's content.
153
+ :deep(img) {
154
+ padding: 1rem;
155
+ }
156
157
158
.nav-items {
0 commit comments