DEV: Remove SCSS color vars fallbacks (#90)

This commit is contained in:
Penar Musaraj 2021-05-12 16:29:05 -04:00 committed by GitHub
parent e4bd38559c
commit f52ade48ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -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);
}
}
@ -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 {