classnames in discover changed to follow convention

This commit is contained in:
nklhrstv 2020-03-29 15:38:01 +03:00
parent a3d59d8f1d
commit 6931fce1a3
2 changed files with 4 additions and 4 deletions

View file

@ -59,7 +59,7 @@ const Discover = ({ urlParams, queryParams }) => {
{selectInputs.map(({ title, options, selected, renderLabelText, onSelect }, index) => (
<Multiselect
key={index}
className={styles['select-input-container']}
className={styles['select-input']}
title={title}
options={options}
selected={selected}
@ -73,7 +73,7 @@ const Discover = ({ urlParams, queryParams }) => {
<div className={styles['spacing']} />
{
paginationInput !== null ?
<PaginationInput {...paginationInput} className={styles['pagination-input-container']} />
<PaginationInput {...paginationInput} className={styles['pagination-input']} />
:
null
}

View file

@ -38,7 +38,7 @@
padding: 1.5rem;
overflow: visible;
.select-input-container {
.select-input {
flex: 0 1 15rem;
height: 3.5rem;
@ -82,7 +82,7 @@
flex: 1;
}
.pagination-input-container {
.pagination-input {
flex: none;
height: 3.5rem;
margin-left: 1.5rem;