Safari is currently not fully supported for editing sites.
Acquia Source is not SOC-2 compliant as of General Availability (GA).
Tailwind Directives can be used in the global CSS. However, it is currently not available in the component-specific CSS.
Using Tailwind’s square bracket notation to generate classes on the fly with any arbitrary value is not supported when using the @apply directive for inlining utility classes when adding custom utilities.
For example, this following code will not work:
@utility gradient-primary {
@apply from-[#2a7b9b] via-[#57c785] to-[#eddd53] bg-linear-to-br;
}Do this instead:
@theme {
--color-gradient-1: #2a7b9b;
--color-gradient-2: #57c785;
--color-gradient-3: #eddd53;
}
@utility gradient-primary {
@apply from-gradient-1 via-gradient-2 to-gradient-3 bg-linear-to-br;
}If this content did not answer your questions, try searching or contacting our support team for further assistance.
If this content did not answer your questions, try searching or contacting our support team for further assistance.