From 91eee3d8e7995b109e6e264fb2da6f65eb462c8c Mon Sep 17 00:00:00 2001 From: Kapu1178 <75460809+Kapu1178@users.noreply.github.com> Date: Sun, 22 Sep 2024 05:00:36 -0400 Subject: [PATCH] fix button css --- tgui/packages/tgui/styles/components/Button.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tgui/packages/tgui/styles/components/Button.scss b/tgui/packages/tgui/styles/components/Button.scss index f559cc263599..bcc73924bf70 100644 --- a/tgui/packages/tgui/styles/components/Button.scss +++ b/tgui/packages/tgui/styles/components/Button.scss @@ -33,14 +33,14 @@ $bg-map: colors.$bg-map !default; background-color 0ms; } - &:focus { + &:active { transition: color 100ms, background-color 100ms; } &:hover, - &:focus { + &:active { background-color: lighten($color, 30%); color: $text-color; }