Prevent horizontal scrollbar from disappearing
parent
e756ecb9f5
commit
2822332591
|
@ -150,7 +150,7 @@ const ChronoTable = React.createClass({
|
|||
}
|
||||
|
||||
return (
|
||||
<div>
|
||||
<div style={{width: '100%', height: '100%', position: 'relative'}}>
|
||||
{
|
||||
series.length < maximumTabsCount ?
|
||||
(
|
||||
|
|
|
@ -173,6 +173,7 @@ $table-tab-scrollbar-height: 6px;
|
|||
}
|
||||
.table--tabs-content {
|
||||
width: 100%;
|
||||
height: calc(100% - #{$table-tab-height});
|
||||
position: absolute;
|
||||
top: $table-tab-height;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue