Skip to content

Commit

Permalink
refactor(media-queries): remove min height on media queries (#2288)
Browse files Browse the repository at this point in the history
* refactor(messenger-feed): remove inline padding

* refactor(feed-header): remove top stroke

* refactor(app-layout): update split pane gap for positioning and spacing

* feat(messenger-feed): add media query to adjust max-width of messenger feed for 2560x1440 screen resolution

* feat(app-main-wrapper): add media query layout sizing for larger screensizes (2561px +)

* refactor(media-queries): remove min height on media queries
  • Loading branch information
domw30 authored Sep 16, 2024
1 parent d7ad6c4 commit 6801be3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 6801be3

Please sign in to comment.