Prevent horizontal scrollbar from disappearing

pull/10616/head
Alex P 2017-04-26 12:59:55 -07:00
parent e756ecb9f5
commit 2822332591
2 changed files with 2 additions and 1 deletions

View File

@ -150,7 +150,7 @@ const ChronoTable = React.createClass({
}
return (
<div>
<div style={{width: '100%', height: '100%', position: 'relative'}}>
{
series.length < maximumTabsCount ?
(

View File

@ -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;
}