From 828121217d1e7aed66847fa93bad359df225dcf0 Mon Sep 17 00:00:00 2001 From: nullnyat Date: Tue, 8 Feb 2022 17:18:41 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=9C=E3=82=BF=E3=83=B3=E3=82=AD=E3=83=A9?= =?UTF-8?q?=E3=82=AD=E3=83=A9+?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/client/src/components/ui/button.vue | 29 +++----------------- 1 file changed, 4 insertions(+), 25 deletions(-) diff --git a/packages/client/src/components/ui/button.vue b/packages/client/src/components/ui/button.vue index 9c9962410..098645a4a 100644 --- a/packages/client/src/components/ui/button.vue +++ b/packages/client/src/components/ui/button.vue @@ -170,20 +170,6 @@ export default defineComponent({ border-radius: 999px; } - &.primary { - font-weight: bold; - color: var(--fgOnAccent) !important; - background: var(--accent); - - &:not(:disabled):hover { - background: var(--X8); - } - - &:not(:disabled):active { - background: var(--X8); - } - } - &.gradate { font-weight: bold; color: var(--fgOnAccent) !important; @@ -199,19 +185,12 @@ export default defineComponent({ } &.danger { - color: #ff2a2a; - - &.primary { - color: #fff; - background: #ff2a2a; + border-color: #FF9D9D; &:not(:disabled):hover { - background: #ff4242; - } - - &:not(:disabled):active { - background: #d42e2e; - } + text-shadow: -6px 0px 15px rgba(255, 157, 157, 0.83), + 6px 0px 15px rgba(255, 157, 157, 0.83); + } }