Skip to content

Commit

Permalink
fix: header blocking clicks + more minimal select style
Browse files Browse the repository at this point in the history
  • Loading branch information
felixroos committed Jan 6, 2025
1 parent 36770b5 commit 80707a4
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -331,9 +331,28 @@ iframe#shader {
}

.slot {
position: relative;
header {
margin-bottom: -48px;
padding: 0;
z-index: 1000;
position: absolute;
top: 0;
align-self: flex-end;
flex: 0 1 auto;
}
select {
font-size: 0.95em;
font-family: monospace;
background: transparent;
text-shadow:
1px 1px 0px black,
-1px -1px 0px black,
1px -1px 0px black,
-1px 1px 0px black;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-align: right;
}
}
}

0 comments on commit 80707a4

Please sign in to comment.