Files

32 lines
770 B
JavaScript
Raw Permalink Normal View History

import Component from "@ember/component";
export default Component.extend({
didInsertElement() {
this._super(...arguments);
this.cardElement.mount("#card-element");
this.setCardElementStyles();
},
setCardElementStyles() {
const root = document.querySelector(":root");
const computedStyle = getComputedStyle(root);
const primaryColor = computedStyle.getPropertyValue("--primary");
const placeholderColor =
computedStyle.getPropertyValue("--secondary-medium");
this.cardElement.update({
style: {
base: {
color: primaryColor,
"::placeholder": {
color: placeholderColor,
},
},
},
});
},
2024-01-16 17:51:44 +01:00
didDestroyElement() {
this._super(...arguments);
},
});