commerce/components/product/Swatch/Swatch.module.css
2020-10-15 16:00:11 -03:00

30 lines
522 B
CSS

.root {
@apply h-12 w-12 bg-primary text-base rounded-full mr-3 inline-flex
items-center justify-center cursor-pointer transition duration-75 ease-in-out
p-0 shadow-none border-gray-200 border box-border;
}
.active.size {
@apply border-accents-2 border-2;
}
.root:hover {
@apply transform scale-110 bg-hover;
}
.colorViolet {
@apply bg-violet !important;
}
.colorPink {
@apply bg-pink !important;
}
.colorBlack {
@apply bg-black !important;
}
.colorWhite {
@apply bg-white text-black !important;
}