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

refactor(media-queries): remove min height on media queries #2288

Merged
merged 7 commits into from
Sep 16, 2024
2 changes: 1 addition & 1 deletion src/components/messenger/chat/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ $title-bar-border-radius: 8px 8px 0px 0px;
overflow: hidden;
width: 100%;

@media only screen and (min-width: 2561px) and (min-height: 1440px) {
@media (min-width: 2561px) {
min-width: 1558px;
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/messenger/feed/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
backdrop-filter: blur(64px);
}

@media only screen and (min-width: 2560px) and (min-height: 1440px) {
@media (min-width: 2561px) {
max-width: 594px;
}
}
2 changes: 1 addition & 1 deletion src/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $border-color-hover: theme-zui.$color-primary-7;
margin: 0 auto;
width: 100%;

@media only screen and (min-width: 2560px) and (min-height: 1440px) {
@media (min-width: 2561px) {
width: unset;
}
}
Expand Down