Safari support¶
Safari is currently not fully supported for editing sites.
SOC-2 compliance¶
Acquia Source is not SOC-2 compliant as of General Availability (GA).
Tailwind Directives¶
Tailwind Directives can be used in the global CSS. However, it is currently not available in the component-specific CSS.
Tailwind Square Bracket Notation¶
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;
}