Files
Gainsight/Custom_Templates/customer_templates/BirchStreet Academy/script.js.liquid

11 lines
314 B
Plaintext

// Create a <style> tag
const style = document.createElement('style');
style.textContent = `
.bqUfwS {
background-color: blue !important; /* Use !important to enforce the rule */
color: white !important;
}
`;
// Append the <style> tag to the document head
document.head.appendChild(style);