diff --git a/components/LoginModal/index.scss b/components/LoginModal/index.scss index e73b400d..f51192e5 100644 --- a/components/LoginModal/index.scss +++ b/components/LoginModal/index.scss @@ -3,29 +3,4 @@ flex-direction: column; gap: calc($unit / 2); margin-bottom: $unit; - - .Button { - font-size: $font-regular; - padding: ($unit * 1.5) ($unit * 2); - width: 100%; - - &.btn-disabled { - background: $grey-90; - color: $grey-70; - cursor: not-allowed; - } - - &:not(.btn-disabled) { - background: $grey-90; - color: $grey-50; - - &:hover { - background: $grey-80; - } - } - } - - input { - background: $grey-90; - } } diff --git a/components/SignupModal/index.scss b/components/SignupModal/index.scss index 4d150173..a7db71a9 100644 --- a/components/SignupModal/index.scss +++ b/components/SignupModal/index.scss @@ -4,27 +4,6 @@ gap: calc($unit / 2); margin-bottom: $unit; - .Button { - font-size: $font-regular; - padding: ($unit * 1.5) ($unit * 2); - width: 100%; - - &.btn-disabled { - background: $grey-90; - color: $grey-70; - cursor: not-allowed; - } - - &:not(.btn-disabled) { - background: $grey-90; - color: $grey-50; - - &:hover { - background: $grey-80; - } - } - } - .terms { color: $grey-50; font-size: $font-small; @@ -40,8 +19,4 @@ } } } - - input { - background: $grey-90; - } }