Skip to content

Commit

Permalink
feat(app-main-wrapper): add media query layout sizing for larger scre…
Browse files Browse the repository at this point in the history
…ensizes (2561px +) (#2287)

* 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 +)
  • Loading branch information
domw30 committed Sep 16, 2024
1 parent 6ae2fdc commit d7ad6c4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/messenger/chat/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ $title-bar-border-radius: 8px 8px 0px 0px;
overflow: hidden;
width: 100%;

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

.direct-message-chat__content {
height: 100vh;
width: unset;
Expand Down
4 changes: 4 additions & 0 deletions src/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ $border-color-hover: theme-zui.$color-primary-7;
justify-content: space-between;
margin: 0 auto;
width: 100%;

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

&.messenger-full-screen {
Expand Down

0 comments on commit d7ad6c4

Please sign in to comment.