Skip to content

Commit

Permalink
Merge pull request #544 from LiskHQ/368-misplaced-delegate-filters-in…
Browse files Browse the repository at this point in the history
…-s-breakpoint

Misplaced delegate filters in s breakpoint - Closes #368
  • Loading branch information
faival authored Mar 19, 2018
2 parents 0c8620f + 713e077 commit ff30cfc
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions src/components/delegateList/delegateList.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@
line-height: var(--list-line-height);
list-style: none;
padding: 0;
display: flex;
flex-direction: row;
justify-content: flex-start;

& .filter {
display: inline-block;
Expand Down Expand Up @@ -202,7 +205,7 @@
font-weight: 400;
padding-left: 30px;
padding-right: 20px;
vertical-align: middle;
vertical-align: top;
background-color: transparent;
border-bottom: solid 1px transparent;
transition: all ease 250ms;
Expand Down Expand Up @@ -434,12 +437,10 @@
}

.filters {
display: flex;
flex-direction: row;
justify-content: space-between;

& .filter {
margin-right: 0 !important;
&:not(:last-of-type) {
margin-right: 24px;
}

& input {
width: 70px;
Expand Down Expand Up @@ -524,4 +525,12 @@
display: none;
}
}

.filters {
& .filter {
&:not(:last-of-type) {
margin-right: 20px;
}
}
}
}

0 comments on commit ff30cfc

Please sign in to comment.