Add device configuration instruction

This commit is contained in:
Ildar Kamalov
2019-01-22 17:17:33 +03:00
committed by Eugene Bujak
parent a7416f9c34
commit 7e95ce9136
8 changed files with 105 additions and 44 deletions

View File

@@ -84,7 +84,7 @@ class Filters extends Component {
columns={this.columns}
showPagination={true}
defaultPageSize={10}
minRows={4} // TODO find out what to show if rules.length is 0
minRows={4}
// Text
previousText={ t('previous_btn') }
nextText={ t('next_btn') }

View File

@@ -23,7 +23,7 @@ class Tab extends Component {
className={tabClass}
onClick={this.handleClick}
>
<svg className="tab__icon">
<svg className="tab__icon">
<use xlinkHref={`#${label.toLowerCase()}`} />
</svg>
{label}

View File

@@ -40,3 +40,12 @@
margin-bottom: 6px;
fill: #4a4a4a;
}
.tab__text {
line-height: 1.7;
}
.tab__text li,
.tab__text p {
margin-bottom: 5px;
}

View File

@@ -31,9 +31,9 @@ class Tabs extends Component {
return (
<Tab
activeTab={activeTab}
key={label}
label={label}
activeTab={activeTab}
onClick={this.onClickTabControl}
/>
);