diff --git a/assets/styles/components/_button.scss b/assets/styles/components/_button.scss index cb10d61..e9a2827 100644 --- a/assets/styles/components/_button.scss +++ b/assets/styles/components/_button.scss @@ -95,3 +95,15 @@ background-color: #2a2a2a; } } + +fieldset[disabled] { + .button { + &.is-primary { + &.is-outlined { + .trnd { + background-color: #44f1a6; + } + } + } + } +} diff --git a/assets/styles/components/_step.scss b/assets/styles/components/_step.scss index c1310f5..43fc685 100644 --- a/assets/styles/components/_step.scss +++ b/assets/styles/components/_step.scss @@ -11,7 +11,7 @@ display: flex; align-items: center; border-radius: 6px; - background: #1F1F1F; + background: #1f1f1f; @include mobile { flex-wrap: wrap; @@ -22,7 +22,6 @@ margin-top: 0; } - .diamond { margin: 1.25rem 0 1.25rem 1.25rem; @@ -53,13 +52,13 @@ } + .deployed { - margin-top: .25rem; + margin-top: 0.25rem; } } .deployed { font-size: 0.813rem; - color: #6B6B6B; + color: #6b6b6b; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; @@ -73,17 +72,19 @@ flex: none; width: 100%; text-align: center; - padding: .75rem 1.25rem; + padding: 0.75rem 1.25rem; } - .button { + .button, + fieldset[disabled] & .button { padding: 0; background-color: transparent; border: 0; color: $primary; font-size: 0.875rem; - &:focus:not(:active), &.is-focused:not(:active) { + &:focus:not(:active), + &.is-focused:not(:active) { box-shadow: none; } } diff --git a/components/Loading.vue b/components/Loading.vue index 1d7d36f..1c9a22c 100644 --- a/components/Loading.vue +++ b/components/Loading.vue @@ -12,7 +12,6 @@ import { mapState } from 'vuex' export default { computed: { ...mapState('loading', ['enabled', 'message', 'txHash']), - ...mapState('getNetwork', ['getProviderName']), }, } diff --git a/components/Navbar.vue b/components/Navbar.vue index 3e5b46c..88b1822 100644 --- a/components/Navbar.vue +++ b/components/Navbar.vue @@ -6,12 +6,7 @@ diff --git a/components/Step.vue b/components/Step.vue index ce2ea66..2f66c85 100644 --- a/components/Step.vue +++ b/components/Step.vue @@ -1,10 +1,7 @@