---
title: "Known issues and limitations"
date: "2025-04-04T14:06:32+00:00"
summary: "Discover known issues and limitations in Acquia Source powered by Drupal CMS."
image:
type: "page"
url: "/acquia-source/known-issues-and-limitations"
id: "5a77de4d-a97b-40d5-ba73-4e4209194928"
---

Table of contents will be added

Cloudflare Origin SSL Certificate Expiry Date Error
---------------------------------------------------

Customers encounter an error when they attempt to upload Cloudflare origin Secure Sockets Layer (SSL) certificates to Acquia Source if the expiry date of the certificate is after January 19, 2038. The system incorrectly reports that these certificates expire in the year 1905.

_Workaround:_  To bypass this limitation and successfully upload your certificates, set the certificate's expiry date to before January 19, 2038.

GitHub Sync: Component Syncing Requires Manual Triggers
-------------------------------------------------------

Adding or deleting components in and Acquia Source site does not automatically trigger a GitHub sync.

*   Component deletions: Deleting a component in a site does not remove it from GitHub. 
    
    _Workaround_: You must publish an additional change to trigger the sync. Otherwise, the next GitHub push will recreate the deleted component in the site.
    
*   Component additions: Adding a new component does not commit it to GitHub. 
    
    _Workaround_: You must manually click **Publish**, even if only global CSS is the only pending change, to push it to the repository. 
    

For more details, visit [GitHub sync](/acquia-source/github-sync "GitHub sync").

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](https://tailwindcss.com/docs/functions-and-directives#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;
    }

_Workaround_:

    @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;
    }

Removal of components through the Component Library
---------------------------------------------------

An error occurs if you try to remove a component through the Component Library. 

_Workaround_: Remove the component through the Code component panel.