Use pvar() instead of SCSS variables

This commit is contained in:
Booteille 2023-02-08 14:50:02 +01:00 committed by Wicklow
parent 60ea45b092
commit b4e556144d
2 changed files with 3 additions and 3 deletions

View File

@ -130,7 +130,7 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
font-weight: $font-semibold; font-weight: $font-semibold;
color: $fg-color; color: pvar(--mainForegroundColor);
padding: 7px 0; padding: 7px 0;
margin-top: auto; margin-top: auto;
text-decoration: none; text-decoration: none;

View File

@ -537,8 +537,8 @@
height: 12px; height: 12px;
opacity: 0; opacity: 0;
transform: rotate(45deg) scale(0); transform: rotate(45deg) scale(0);
border-right: 2px solid $bg-color; border-right: 2px solid pvar(--mainBackgroundColor);
border-bottom: 2px solid $bg-color; border-bottom: 2px solid pvar(--mainBackgroundColor);
} }
} }