Fix focus/hover priority

This commit is contained in:
Daniel Flanagan 2020-12-16 00:14:16 -06:00
parent e858b4f59b
commit c6266881bf
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ input, textarea
color var(--input-fg)
border-radius 0.25em
&:hover { background: var(--input-hover-bg) }
&:focus { background: var(--input-focus-bg) }
&:hover { background: var(--input-hover-bg) }
button, input[type=submit]
font inherit
@ -90,8 +90,8 @@ button, input[type=submit]
border 0
padding 0.5em 1em
&:hover { background: var(--button-hover-bg) }
&:focus { background: var(--button-hover-bg) }
&:hover { background: var(--button-hover-bg) }
.lead { font-size: 1.5rem }
.rounded { border-radius: 0.5em }