Skip to content

Commit

Permalink
DDW-659 - Review and fix incorrect global instances in css files
Browse files Browse the repository at this point in the history
  • Loading branch information
DeeJayElly committed Jun 8, 2021
1 parent d1c700e commit c77e784
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
Expand Up @@ -64,11 +64,11 @@
.progress {
align-items: center;
background: repeating-linear-gradient(
-63deg,
var(--theme-staking-progress-stripe-dark-1-background-color),
var(--theme-staking-progress-stripe-dark-1-background-color) 10px,
var(--theme-staking-progress-stripe-dark-2-background-color) 10px,
var(--theme-staking-progress-stripe-dark-2-background-color) 20px
-63deg,
var(--theme-staking-progress-stripe-dark-1-background-color),
var(--theme-staking-progress-stripe-dark-1-background-color) 10px,
var(--theme-staking-progress-stripe-dark-2-background-color) 10px,
var(--theme-staking-progress-stripe-dark-2-background-color) 20px
);
border-radius: 5px;
display: flex;
Expand Down
Expand Up @@ -2,7 +2,7 @@
:global {
.attention {
color: var(
--theme-button-attention-delete-text-color-disabled
--theme-button-attention-delete-text-color-disabled
) !important;

&:not([disabled]) {
Expand All @@ -15,7 +15,7 @@
svg {
path {
fill: var(
--theme-button-attention-delete-text-color-disabled
--theme-button-attention-delete-text-color-disabled
) !important;
}
}
Expand Down
Expand Up @@ -76,15 +76,19 @@
white-space: nowrap;
width: 100%;
&.spinning {
@include loading-spinner('../../../assets/images/spinner-light.svg');
@include loading-spinner(
'../../../assets/images/spinner-light.svg'
);
}
}

.submitWithPasswordButton {
max-width: 310px;
width: calc(50% - 10px);
&.spinning {
@include loading-spinner('../../../assets/images/spinner-light.svg');
@include loading-spinner(
'../../../assets/images/spinner-light.svg'
);
}
}

Expand Down

0 comments on commit c77e784

Please sign in to comment.