Skip to content

Commit dadb11c

Browse files
authored
fix: make the background opaque (sveltejs#440)
fixes sveltejs#439
1 parent 51b54dd commit dadb11c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/routes/tutorial/[slug]/filetree/ContextMenu.svelte

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,18 @@
5555
ul {
5656
margin: 0;
5757
padding: 0;
58+
background-color: var(--sk-back-3);
59+
border: 1px solid hsl(var(--sk-theme-1-hsl));
5860
}
5961
6062
li {
6163
display: block;
6264
list-style-type: none;
6365
width: 1fr;
6466
}
67+
li:hover {
68+
background-color: var(--sk-theme-1-variant);
69+
}
6570
6671
button {
6772
color: var(--sk-text-2);

0 commit comments

Comments
 (0)