Skip to content

Commit

Permalink
DEV: Remove SCSS color vars fallbacks (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmusaraj committed May 12, 2021
1 parent e4bd385 commit f52ade4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions assets/stylesheets/common/feature-voting.scss
Expand Up @@ -7,13 +7,13 @@
}

.vote-count-wrapper {
border: 3px solid var(--primary-low, $primary-low);
border: 3px solid var(--primary-low);
}

.voting-wrapper.show-pointer .vote-count-wrapper:not(.no-votes) {
cursor: pointer;
&:hover {
background-color: var(--primary-low, $primary-low);
background-color: var(--primary-low);
}
}

Expand Down Expand Up @@ -43,13 +43,13 @@
cursor: pointer;
padding: 0.35em;
&:hover {
background-color: var(--primary-low, $primary-low);
background-color: var(--primary-low);
}
}

.vote-option.remove-vote .d-icon {
margin-right: 0.35em;
color: var(--danger, $danger);
color: var(--danger);
}

.list-vote-count.voted {
Expand Down

0 comments on commit f52ade4

Please sign in to comment.