From c5f929ac559591007c2a1073999d4166624e2690 Mon Sep 17 00:00:00 2001 From: 1ilit Date: Mon, 18 Dec 2023 01:21:33 +0200 Subject: [PATCH] Fix buttons --- src/components/table.jsx | 3 ++- src/index.css | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/src/components/table.jsx b/src/components/table.jsx index 52b244e..f6d90f2 100644 --- a/src/components/table.jsx +++ b/src/components/table.jsx @@ -206,9 +206,10 @@ export default function Table(props) { icon={} type="tertiary" size="small" - theme="solid" style={{ opacity: "0.7", + backgroundColor: "grey", + color: "white", }} > diff --git a/src/index.css b/src/index.css index 41089e6..053cce5 100644 --- a/src/index.css +++ b/src/index.css @@ -21,6 +21,26 @@ border: none !important; } +.semi-button.semi-button-light { + background-color: rgba(var(--semi-grey-1), 1); +} + +.semi-button.semi-button-light:hover { + background-color: rgba(var(--semi-grey-2), 1); +} + +.semi-button.semi-button-primary:not(.semi-button-light):not( + .semi-button-borderless + ) { + background-color: rgba(var(--semi-blue-5), 1); +} + +.semi-button.semi-button-primary:not(.semi-button-light):not( + .semi-button-borderless + ):hover { + background-color: rgba(var(--semi-blue-6), 1); +} + ::-webkit-scrollbar { width: 8px; }