diff --git a/src/components/delegateList/delegateList.css b/src/components/delegateList/delegateList.css index ae9bd6b93a..817666d550 100644 --- a/src/components/delegateList/delegateList.css +++ b/src/components/delegateList/delegateList.css @@ -168,6 +168,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; @@ -205,7 +208,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; @@ -427,12 +430,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; @@ -507,4 +508,12 @@ display: none; } } + + .filters { + & .filter { + &:not(:last-of-type) { + margin-right: 20px; + } + } + } }