forked from treehouse/mastodon
[Glitch] Fix new hashtag page's items not being full-width on mobile
Port b506ce1197
to glitch-soc
signup-info-prompt
parent
8001a9b97b
commit
a93cb340bd
|
@ -62,7 +62,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
|
||||||
|
|
||||||
_measureHeight (heightJustChanged) {
|
_measureHeight (heightJustChanged) {
|
||||||
if (this.props.measureHeight && this.node) {
|
if (this.props.measureHeight && this.node) {
|
||||||
scheduleIdleTask(() => this.node && this.setState({ height: this.node.scrollHeight }));
|
scheduleIdleTask(() => this.node && this.setState({ height: Math.ceil(this.node.scrollHeight) + 1 }));
|
||||||
|
|
||||||
if (this.props.onHeightChange && heightJustChanged) {
|
if (this.props.onHeightChange && heightJustChanged) {
|
||||||
this.props.onHeightChange();
|
this.props.onHeightChange();
|
||||||
|
|
|
@ -297,7 +297,7 @@
|
||||||
color: $primary-text-color;
|
color: $primary-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $no-gap-breakpoint) {
|
@media screen and (max-width: 550px) {
|
||||||
&.optional {
|
&.optional {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -432,6 +432,10 @@ $fluid-breakpoint: $maximum-width + 20px;
|
||||||
.statuses-grid {
|
.statuses-grid {
|
||||||
min-height: 600px;
|
min-height: 600px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 640px) {
|
||||||
|
width: 100% !important; // Masonry layout is unnecessary at this width
|
||||||
|
}
|
||||||
|
|
||||||
&__item {
|
&__item {
|
||||||
width: (960px - 20px) / 3;
|
width: (960px - 20px) / 3;
|
||||||
|
|
||||||
|
@ -439,6 +443,10 @@ $fluid-breakpoint: $maximum-width + 20px;
|
||||||
width: (940px - 20px) / 3;
|
width: (940px - 20px) / 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 640px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: $no-gap-breakpoint) {
|
@media screen and (max-width: $no-gap-breakpoint) {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
}
|
}
|
||||||
|
@ -448,7 +456,7 @@ $fluid-breakpoint: $maximum-width + 20px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
||||||
@media screen and (max-width: $no-gap-breakpoint) {
|
@media screen and (max-width: $no-gap-breakpoint) {
|
||||||
border-bottom: 1px solid lighten($ui-base-color, 12%);
|
border-top: 1px solid lighten($ui-base-color, 16%);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.compact {
|
&.compact {
|
||||||
|
|
Loading…
Reference in New Issue