1
0
Fork 0

fix(lab): Layout improvements

This commit is contained in:
Joost De Cock 2022-05-14 14:53:29 +02:00
parent ed535bbe8c
commit 2c5f0fa332
17 changed files with 75 additions and 120 deletions

View file

@ -36,7 +36,7 @@ const DesignOptionList = props => {
? choice === dflt
? 'text-secondary'
: 'text-accent'
: 'text-neutral-content'
: 'text-base-content'
}
`}
>
@ -56,7 +56,7 @@ const DesignOptionList = props => {
disabled={val === dflt}
onClick={reset}
>
<span className={val===dflt ? 'text-neutral' : 'text-accent'}><ClearIcon /></span>
<span className={val===dflt ? 'text-base' : 'text-accent'}><ClearIcon /></span>
</button>
</div>
</div>