mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-05 04:19:55 +00:00
classnames in discover changed to follow convention
This commit is contained in:
parent
a3d59d8f1d
commit
6931fce1a3
2 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue