diff --git a/packages/ui/src/components/Button/index.module.scss b/packages/ui/src/components/Button/index.module.scss index 18791f966..ba8784ec7 100644 --- a/packages/ui/src/components/Button/index.module.scss +++ b/packages/ui/src/components/Button/index.module.scss @@ -55,21 +55,6 @@ } } -.outline { - border: _.border(var(--color-brand-default)); - background: transparent; - color: var(--color-type-link); - - &.disabled, - &:disabled { - border-color: var(--color-type-disable); - color: var(--color-type-disable); - } - - &:active { - background: var(--color-overlay-brand-pressed); - } -} :global(body.desktop) { .primary { @@ -91,14 +76,4 @@ background: var(--color-overlay-neutral-hover); } } - - .outline { - &:focus-visible { - outline: 3px solid var(--color-overlay-brand-focused); - } - - &:not(:disabled):not(:active):hover { - background: var(--color-overlay-brand-hover); - } - } } diff --git a/packages/ui/src/components/Button/index.tsx b/packages/ui/src/components/Button/index.tsx index 61768432e..6b2098abb 100644 --- a/packages/ui/src/components/Button/index.tsx +++ b/packages/ui/src/components/Button/index.tsx @@ -5,7 +5,7 @@ import { useTranslation } from 'react-i18next'; import * as styles from './index.module.scss'; -export type ButtonType = 'primary' | 'secondary' | 'outline'; +export type ButtonType = 'primary' | 'secondary'; type BaseProps = Omit, 'type' | 'size' | 'title'> & { htmlType?: 'button' | 'submit' | 'reset'; diff --git a/packages/ui/src/components/ConfirmModal/AcModal.tsx b/packages/ui/src/components/ConfirmModal/AcModal.tsx index 2dc670d56..7b4bb0687 100644 --- a/packages/ui/src/components/ConfirmModal/AcModal.tsx +++ b/packages/ui/src/components/ConfirmModal/AcModal.tsx @@ -37,7 +37,7 @@ const AcModal = ({
{children}
-