Uses CSS variables for common definitions, to allow for themes

This commit is contained in:
Alicia Sykes
2021-04-14 21:05:37 +01:00
parent 2baccdb718
commit e31e6d4239
14 changed files with 90 additions and 41 deletions

View File

@@ -93,7 +93,7 @@ export default {
.collapsable {
padding: 5px;
margin: 10px;
border-radius: $curve-factor;
border-radius: var(--curve-factor);
background: var(--primary);
// background: -webkit-linear-gradient(to left top, #9F86FF, #1CA8DD, #007AE1);
// background: linear-gradient(to left top, #9F86FF, #1CA8DD, #007AE1);
@@ -140,7 +140,7 @@ export default {
display: block;
padding: 0.25rem;
cursor: pointer;
border-radius: $curve-factor;
border-radius: var(--curve-factor);
transition: all 0.25s ease-out;
text-align: left;
color: var(--background-transparent);