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/search.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 'style/search.css')
-rw-r--r-- | style/search.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/style/search.css b/style/search.css index 291b482..168bb56 100644 --- a/style/search.css +++ b/style/search.css @@ -148,12 +148,12 @@ #man { border-color: transparent; } } -@media (width <= 970px) +@media (max-width: 970px) { #topnav { display: none; } } -@media (width <= 800px) +@media (max-width: 800px) { #main > header { |