Fix status overflow issue *and* scroll bar

profile-avatar-switcher
Alex Gleason 2021-09-26 18:48:43 -05:00
rodzic ce7eb29e1c
commit 80d75d5a80
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
3 zmienionych plików z 17 dodań i 8 usunięć

Wyświetl plik

@ -231,4 +231,16 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
});
export default injectIntl(connect(makeMapStateToProps, mapDispatchToProps)(Status));
export default @connect(makeMapStateToProps, mapDispatchToProps)
@injectIntl
class StatusContainer extends React.Component {
render() {
return (
<div className='status-container'>
<Status {...this.props} />
</div>
);
}
}

Wyświetl plik

@ -126,9 +126,12 @@
vertical-align: middle;
}
.status-container {
padding-bottom: 10px;
}
.status__wrapper {
@include standard-panel;
margin-bottom: 10px;
padding: 15px 0 10px;
}

Wyświetl plik

@ -748,9 +748,3 @@
background: var(--accent-color);
}
}
// Create a new Block Formatting Context to prevent the timelines from jumping
// https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Block_formatting_context
.slist > .item-list > article {
overflow: hidden;
}