Skip to content

Commit 7d8b9c0

Browse files
Change overflow properties for focus styles to improve visibility
1 parent 4d4a088 commit 7d8b9c0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

styles.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,7 +1190,7 @@ a:focus {
11901190
background-color: var(--header-bg);
11911191
border-bottom: 1px solid var(--border-color);
11921192
height: 36px;
1193-
overflow: hidden;
1193+
overflow: visible; /* ← was: overflow: hidden */
11941194
flex-shrink: 0;
11951195
padding: 0 4px;
11961196
gap: 0;
@@ -1201,10 +1201,10 @@ a:focus {
12011201
display: flex;
12021202
align-items: flex-end;
12031203
overflow-x: auto;
1204-
overflow-y: hidden;
1204+
overflow-y: visible; /* ← was: overflow-y: hidden */
12051205
flex: 1;
12061206
height: 100%;
1207-
scrollbar-width: none; /* Firefox */
1207+
scrollbar-width: none;
12081208
-ms-overflow-style: none;
12091209
}
12101210

0 commit comments

Comments
 (0)