Skip to content

Commit 0fc9fd0

Browse files
committedAug 19, 2024··
css fix
1 parent bdb5aef commit 0fc9fd0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎src/atcb-init.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,7 @@ if (atcbIsBrowser()) {
223223
this.classList.add('add-to-calendar');
224224
// build
225225
try {
226-
this.style.visibility = 'visible';
227-
this.style.opacity = '1';
228-
this.style.position = 'relative';
226+
this.setAttribute('style', 'visibility:visible;opacity:1;position:relative;outline:none !important;');
229227
await atcb_build_button(this.shadowRoot, this.data);
230228
return true;
231229
} catch (e) {

0 commit comments

Comments
 (0)
Please sign in to comment.