mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
Reduce middle column size by 32px to fix overflow around layout breakpoint
Fixes #31679
This commit is contained in:
parent
0226bbe516
commit
1387475e52
|
@ -63,7 +63,7 @@ export default class ColumnsArea extends ImmutablePureComponent {
|
||||||
children: PropTypes.node,
|
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)');
|
mediaQuery = 'matchMedia' in window && window.matchMedia('(max-width: 1174px)');
|
||||||
|
|
||||||
state = {
|
state = {
|
||||||
|
|
|
@ -2712,7 +2712,7 @@ a.account__display-name {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
@media screen and (min-width: $no-gap-breakpoint) {
|
@media screen and (min-width: $no-gap-breakpoint) {
|
||||||
max-width: 600px;
|
max-width: 568px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue