reduce dropdown height for smaller screen

This commit is contained in:
meaz 2022-03-18 21:52:37 +01:00
parent f3c08fbb3a
commit f6c3a89c2c
Signed by: meaz
GPG Key ID: CD7A47B2F1ED43B4
1 changed files with 8 additions and 1 deletions

View File

@ -4,8 +4,15 @@ Disroot Media Queries
29-01-2019
------------------------------------*/
/* screenheight less than 800px
------------------------------------*/
@media only screen and (max-height: 800px) {
ul#nav li.dropdown {
height: 20px;
}
}
/* screenwidth less than 1000px
/* screenwidth less than 1150px
------------------------------------*/
@media only screen and (max-width: 1150px) {