Use svg for arrows in calendar

This commit is contained in:
Greg Burri 2025-05-22 02:20:12 +02:00
parent 5a314ffbec
commit 03f74e76ca
2 changed files with 27 additions and 2 deletions

View file

@ -9,6 +9,22 @@
width: 100%;
font-weight: bold;
.prev.button,
.next.button {
.svg-arrow {
display: block;
margin: consts.$margin calc(consts.$margin / 2);
fill: consts.$link-color;
width: 0.8rem;
height: 0.8rem;
}
&:hover .svg-arrow {
fill: consts.$link-hover-color;
}
}
.prev {
float: left;
}