1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

fixed arrow size on tablet

This commit is contained in:
Fedor Katurov 2021-12-26 10:25:16 +07:00
parent 41cbb9f2a2
commit 782bafcc60

View file

@ -35,7 +35,8 @@
transform: scale(1); transform: scale(1);
@include tablet { @include tablet {
transform: scale(0.5); width: 32px;
height: 32px;
} }
&:global(.swiper-button-prev) { &:global(.swiper-button-prev) {
@ -43,7 +44,9 @@
padding-right: 3px; padding-right: 3px;
@include tablet { @include tablet {
left: 5px; left: 0;
border-radius: 0 $radius $radius 0;
transform-origin: 0 50%;
} }
} }
@ -52,7 +55,9 @@
padding-left: 3px; padding-left: 3px;
@include tablet { @include tablet {
right: 5px; right: 0;
border-radius: $radius 0 0 $radius;
transform-origin: 100% 50%;
} }
} }
@ -65,6 +70,10 @@
font-size: 18px; font-size: 18px;
pointer-events: none; pointer-events: none;
font-weight: 900; font-weight: 900;
@include tablet {
font-size: 12px;
}
} }
} }