Reduce middle column size by 32px to fix overflow around layout breakpoint

Fixes #31679
This commit is contained in:
Claire 2024-09-12 16:36:23 +02:00
parent 0226bbe516
commit 1387475e52
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ export default class ColumnsArea extends ImmutablePureComponent {
children: PropTypes.node,
};
// Corresponds to (max-width: $no-gap-breakpoint + 285px - 1px) in SCSS
// Corresponds to (max-width: $no-gap-breakpoint - 1px) in SCSS
mediaQuery = 'matchMedia' in window && window.matchMedia('(max-width: 1174px)');
state = {

View File

@ -2712,7 +2712,7 @@ a.account__display-name {
flex-direction: column;
@media screen and (min-width: $no-gap-breakpoint) {
max-width: 600px;
max-width: 568px;
}
}
}