From a478d12cf7d077896a6a442837771334b33d0c7a Mon Sep 17 00:00:00 2001 From: Nick Milton Date: Thu, 7 Mar 2024 13:16:45 -0500 Subject: [PATCH] fix(demo): actually show active buttons --- demo/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/demo/style.css b/demo/style.css index 9bf7ce5..d35f5c4 100644 --- a/demo/style.css +++ b/demo/style.css @@ -126,6 +126,11 @@ button { background: var(--am-button-hover-background, var(--am-active-theme-primary)); color: var(--am-button-hover-color, var(--am-active-theme-light)); } + + &.active { + --am-button-border: 0.125rem solid var(--am-active-theme-secondary); + --am-button-hover-background: var(--am-active-theme-secondary); + } } nav {