Добавлены стрелочки и стиль для их отображения

This commit is contained in:
ARLakhin
2026-04-21 00:29:20 +03:00
parent c750e470d6
commit bc095da738
3 changed files with 35 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
.up::before,
.down::before {
content: "";
display: inline-block;
width: 12px;
height: 12px;
margin-right: 6px;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
.up::before {
background-image: asset-url('arrow_up.svg');
}
.down::before {
background-image: asset-url('arrow_down.svg');
}