diff options
author | Ajay <[email protected]> | 2022-01-24 23:16:38 -0500 |
---|---|---|
committer | Ajay <[email protected]> | 2022-01-24 23:16:38 -0500 |
commit | 666aaab7f23430bee17c924c0797f4a8842c1860 (patch) | |
tree | 553dcfe26de4ac7f78f21541bd125221afdd2617 | |
parent | 963ead0a306a326a08e18fb965403ea65f5f2fa3 (diff) | |
download | SponsorBlock-666aaab7f23430bee17c924c0797f4a8842c1860.tar.gz SponsorBlock-666aaab7f23430bee17c924c0797f4a8842c1860.zip |
Use color for hover
-rw-r--r-- | public/options/options.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/public/options/options.css b/public/options/options.css index f77f84fd..2c166f54 100644 --- a/public/options/options.css +++ b/public/options/options.css @@ -97,10 +97,11 @@ html, body { overflow: hidden; background-color: var(--tab-color); color: var(--white); + transition: background-color 0.1s; } .tab-heading:hover { - outline: 3px solid var(--tab-hover); + background-color: #4d0000; } .tab-heading.selected { |