carhop__carhop-theme__DEV/resources/css/base/buttons.css
2025-06-03 10:34:57 +02:00

43 lines
731 B
CSS

.wp-block-button__link {
border-radius: 0px;
@apply border-primary border bg-transparent text-primary;
}
.cta {
@apply block w-fit px-6 py-3;
&--classic {
@apply border-primary border bg-transparent text-primary;
&:hover {
@apply bg-primary text-white;
svg rect,
svg polyline {
@apply !stroke-white;
}
}
}
&--rounded {
@apply rounded-full;
}
&--primary {
@apply border-primary border bg-primary text-white;
}
&--mailing {
}
&--has-icon {
@apply flex items-center gap-4;
svg {
@apply w-6;
rect,
polyline {
@apply stroke-primary;
stroke-width: 3;
}
}
}
}