Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made the Auxillary menu responsive #4240

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 12 additions & 23 deletions lib/materialize-iso.css
Original file line number Diff line number Diff line change
Expand Up @@ -3363,7 +3363,7 @@ i.left {

}

@media only screen and (max-width: 1004px) {
@media only screen and (max-width:1100px) {

.materialize-iso .filler {
display: none;
Expand All @@ -3377,7 +3377,7 @@ i.left {
}
}

@media only screen and (max-width: 800px) {
@media only screen and (max-width: 820px) {
.materialize-iso .filler {
display: none;
}
Expand Down Expand Up @@ -3415,7 +3415,7 @@ i.left {
}
}

@media only screen and (max-width: 550px) {
@media only screen and (max-width: 690px) {
.materialize-iso .filler, .materialize-iso .logo {
display: none;
}
Expand All @@ -3436,16 +3436,16 @@ i.left {
}


@media only screen and (max-width: 450px) {
@media only screen and (max-width: 525px) {
.materialize-iso .filler, .materialize-iso .logo {
display: none;
}

.materialize-iso nav .main i.material-icons {
font-size: 20px;
position: relative;
margin-left: -5px;
margin-right: -5px;
margin-left: -8px;
margin-right: -8px;
padding: 0px;
}

Expand All @@ -3458,39 +3458,28 @@ i.left {
}
}


@media only screen and (max-width: 400px) {
.materialize-iso .filler, .materialize-iso .logo {
display: block;
display: none;
}

.materialize-iso nav .main i.material-icons {
font-size: 18px;
font-size: 15px;
position: relative;
margin-left: -5px;
margin-right: -5px;
margin-left: -8px;
margin-right: -8px;
padding: 0px;
}

.materialize-iso nav .aux i.material-icons {
font-size: 16px;
font-size: 12px;
position: relative;
margin-left: -7.5px;
margin-right: -7.5px;
padding: 0px;
}
}

@media only screen and (min-width: 360px) and (max-width: 400px) {
.materialize-iso nav .main i.material-icons,
.materialize-iso nav .aux i.material-icons {
font-size: 19px;
position: relative;
margin-left: -4px;
margin-right: -4px;
padding: 0;
}
}

.materialize-iso nav .button-collapse {
float: left;
position: relative;
Expand Down
Loading