fix(ui): filters padding
This commit is contained in:
parent
5dc5f085b9
commit
dd549b4c1f
1 changed files with 2 additions and 2 deletions
|
|
@ -52,7 +52,7 @@ export const FilterList = observer((props: Props) => {
|
||||||
<div
|
<div
|
||||||
className={cn(
|
className={cn(
|
||||||
'bg-white',
|
'bg-white',
|
||||||
borderless ? '' : 'pt-2 px-4 rounded-xl border border-gray-lighter'
|
borderless ? '' : 'pb-2 px-4 rounded-xl border border-gray-lighter'
|
||||||
)}
|
)}
|
||||||
style={{
|
style={{
|
||||||
borderBottomLeftRadius: props.mergeDown ? 0 : undefined,
|
borderBottomLeftRadius: props.mergeDown ? 0 : undefined,
|
||||||
|
|
@ -85,7 +85,7 @@ export const FilterList = observer((props: Props) => {
|
||||||
!filter.isEvent ? (
|
!filter.isEvent ? (
|
||||||
<div
|
<div
|
||||||
key={`${filter.key}-${filterIndex}`}
|
key={`${filter.key}-${filterIndex}`}
|
||||||
className={'py-2 hover:bg-active-blue px-5 '}
|
className={'hover:bg-active-blue px-5 '}
|
||||||
style={{
|
style={{
|
||||||
marginLeft: '-1.25rem',
|
marginLeft: '-1.25rem',
|
||||||
width: 'calc(100% + 2.5rem)'
|
width: 'calc(100% + 2.5rem)'
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue