@@ -98,11 +98,14 @@
|
|
98
98
|
this.attachShadow({ mode: 'open' });
|
99
99
|
const template = document.createElement('template');
|
100
100
|
template.innerHTML = `<style>
|
101
|
+
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
|
102
|
+
|
101
103
|
:host {
|
102
104
|
position: absolute;
|
103
105
|
display: block;
|
104
106
|
width: max(600px, 100%);
|
105
107
|
height: max(300px, 100%);
|
108
|
+
font-family: 'Roboto', sans-serif;
|
106
109
|
}
|
107
110
|
@media (max-width: 600px) {
|
108
111
|
:host {
|