mirror of
https://github.com/vercel/commerce.git
synced 2025-07-04 12:11:22 +00:00
38 lines
890 B
SCSS
38 lines
890 B
SCSS
// .customArrow{
|
|
// width: 64px;
|
|
// height: 64px;
|
|
// &:focus{
|
|
// outline: none;
|
|
// }
|
|
// @apply absolute top-1/2 bg-background-arrow transform -translate-y-1/2 flex justify-center items-center transition duration-100;
|
|
// &.leftArrow{
|
|
// @apply left-0;
|
|
// }
|
|
// &.rightArrow{
|
|
// @apply right-0;
|
|
// }
|
|
// &.isDisabled{
|
|
// @apply hidden ;
|
|
// }
|
|
// }
|
|
.navigationWrapper{
|
|
:global(.customArrow) {
|
|
width: 64px;
|
|
height: 64px;
|
|
&:focus{
|
|
outline: none;
|
|
}
|
|
@apply absolute top-1/2 bg-background-arrow transform -translate-y-1/2 flex justify-center items-center transition duration-100;
|
|
&.leftArrow{
|
|
@apply left-0;
|
|
}
|
|
&.rightArrow{
|
|
@apply right-0;
|
|
}
|
|
&.isDisabled{
|
|
@apply hidden ;
|
|
}
|
|
}
|
|
}
|
|
|