diff options
author | dweller <dweller@cabin.digital> | 2024-03-05 20:37:03 +0200 |
---|---|---|
committer | dweller <dweller@cabin.digital> | 2024-03-05 20:37:03 +0200 |
commit | 98cc28af8d4cb81a7070ba0d43e2254eae073d01 (patch) | |
tree | cbb787ae8618a8ca4b4fe3cdbc1407ba160ff194 /style/main.css | |
parent | 95705c29d9e83d1ed639c6a1c01cba0c0b041d7f (diff) |
Fix webkit (modern day IE courtesy of AppleĀ® Inc.) stuff like broken modern media queries and no style for dropdowns
Diffstat (limited to '')
-rw-r--r-- | style/main.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/style/main.css b/style/main.css index 5b6a064..886dedd 100644 --- a/style/main.css +++ b/style/main.css @@ -310,6 +310,11 @@ button, input { all: unset; } user-select: none; } +@supports (-webkit-touch-callout: none) +{ + #sect, #arch { border-bottom: 2px solid var(--border); } +} + button, input[type=submit] { color: var(--btn-fg); |