|
|
|
@ -2,6 +2,7 @@
|
|
|
|
|
import {
|
|
|
|
|
SvelteComponent,
|
|
|
|
|
append,
|
|
|
|
|
attr,
|
|
|
|
|
detach,
|
|
|
|
|
element,
|
|
|
|
|
init,
|
|
|
|
@ -13,7 +14,7 @@ import {
|
|
|
|
|
function add_css() {
|
|
|
|
|
var style = element("style");
|
|
|
|
|
style.id = "svelte-1slhpfn-style";
|
|
|
|
|
style.textContent = "@media(min-width: 1px){}";
|
|
|
|
|
style.textContent = "@media(min-width: 1px){div.svelte-1slhpfn{color:red}}";
|
|
|
|
|
append(document.head, style);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -23,6 +24,7 @@ function create_fragment(ctx) {
|
|
|
|
|
return {
|
|
|
|
|
c() {
|
|
|
|
|
div = element("div");
|
|
|
|
|
attr(div, "class", "svelte-1slhpfn");
|
|
|
|
|
},
|
|
|
|
|
m(target, anchor) {
|
|
|
|
|
insert(target, div, anchor);
|
|
|
|
|