build(sass): remove imports of vars
imports are deprecated
This commit is contained in:
parent
42edbe2732
commit
dd8495d596
2 changed files with 21 additions and 20 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue