Skip to content

Commit 5789835

Browse files
committed
✨ Fix font URL syntax in CardRenderer for improved CSS compatibility
1 parent 93936b1 commit 5789835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/card-renderer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export class CardRenderer {
147147
<style>
148148
@font-face {
149149
font-family: 'Orbitron';
150-
src: url('data:font/woff2;base64,${fontBase64.join('')}') format('woff2');
150+
src: url(data:font/woff2;base64,${fontBase64.join('')}) format('woff2');
151151
}
152152
153153
text {

0 commit comments

Comments
 (0)