Skip to content

Commit

Permalink
Reduce media min width for message reactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jost Schulte committed Apr 13, 2021
1 parent 1c23efb commit 1493c1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stylesheets/_modules.scss
Expand Up @@ -11475,16 +11475,16 @@ $contact-modal-padding: 18px;
}
}

/* Spec: container < 437px */
@media (min-width: 0px) and (max-width: 799px) {
/* Spec: container < 515px */
@media (min-width: 0px) and (max-width: 834px) {
.module-message {
// Add 2px for 1px border
max-width: 302px;
}
}

/* Spec: container > 438px and container < 593px */
@media (min-width: 800px) and (max-width: 925px) {
/* Spec: container > 514px and container < 606px */
@media (min-width: 835px) and (max-width: 925px) {
.module-message {
// Add 2px for 1px border
max-width: 376px;
Expand Down

0 comments on commit 1493c1b

Please sign in to comment.