From c6266881bf2842da81e38714fa73f081ed866b4f Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Wed, 16 Dec 2020 00:14:16 -0600 Subject: [PATCH] Fix focus/hover priority --- src/stylus/styles.styl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stylus/styles.styl b/src/stylus/styles.styl index 46a9aaf..2f50b53 100644 --- a/src/stylus/styles.styl +++ b/src/stylus/styles.styl @@ -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 }