Fix status overflow issue *and* scroll bar
This commit is contained in:
parent
ce7eb29e1c
commit
80d75d5a80
|
@ -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>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -126,9 +126,12 @@
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status-container {
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.status__wrapper {
|
.status__wrapper {
|
||||||
@include standard-panel;
|
@include standard-panel;
|
||||||
margin-bottom: 10px;
|
|
||||||
padding: 15px 0 10px;
|
padding: 15px 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -748,9 +748,3 @@
|
||||||
background: var(--accent-color);
|
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;
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue