28 lines
423 B
CSS
28 lines
423 B
CSS
.fuz-extra-services {
|
|
@apply mt-16;
|
|
color: var(--fuz-text);
|
|
}
|
|
|
|
.fuz-title-small {
|
|
@apply text-xl font-semibold mb-4;
|
|
color: var(--fuz-text);
|
|
}
|
|
|
|
.fuz-expand-details {
|
|
@apply px-4 py-4;
|
|
background: rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
:root.dark .fuz-expand-details {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.btn-link {
|
|
@apply underline cursor-pointer;
|
|
color: var(--fuz-accent);
|
|
}
|
|
|
|
.btn-link:hover {
|
|
opacity: 0.7;
|
|
}
|