build(sass): remove imports of vars

imports are deprecated
This commit is contained in:
Anhgelus Morhtuuzh 2024-11-13 10:23:50 +01:00
parent 42edbe2732
commit dd8495d596
No known key found for this signature in database
GPG key ID: CAD341EFA92DDDE5
2 changed files with 21 additions and 20 deletions

View file

@ -1,4 +1,4 @@
@import "vars";
@use "vars";
.tags {
display: grid;
@ -6,18 +6,18 @@
margin-top: 1rem;
column-gap: 2rem;
row-gap: 1rem;
@media only screen and (max-width: $bp-little) {
@media only screen and (max-width: vars.$bp-little) {
grid-template-columns: 1fr;
row-gap: 2rem;
}
& h4 {
@media only screen and (max-width: $bp-little) {
@media only screen and (max-width: vars.$bp-little) {
margin-bottom: 0.5rem;
}
}
& p {
display: none;
@media only screen and (max-width: $bp-little) {
@media only screen and (max-width: vars.$bp-little) {
display: block;
}
}
@ -25,7 +25,7 @@
.tag {
cursor: pointer;
@media only screen and (max-width: $bp-little) {
@media only screen and (max-width: vars.$bp-little) {
cursor: auto;
}
& h4:hover {