mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
25 lines
424 B
CSS
25 lines
424 B
CSS
.control {
|
|
@apply bg-violet absolute bottom-10 right-10 flex flex-row
|
|
border-accent-0 border text-accent-0 z-30 shadow-xl select-none;
|
|
height: 48px;
|
|
}
|
|
|
|
.leftControl,
|
|
.rightControl {
|
|
@apply px-9 cursor-pointer;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.leftControl:focus,
|
|
.rightControl:focus {
|
|
@apply outline-none;
|
|
}
|
|
|
|
.rightControl {
|
|
@apply border-l border-accent-0;
|
|
}
|
|
|
|
.leftControl {
|
|
margin-right: -1px;
|
|
}
|