|
|
@ -1,7 +1,7 @@
|
|
|
|
/* generated by Svelte vX.Y.Z */
|
|
|
|
/* generated by Svelte vX.Y.Z */
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
SvelteComponent,
|
|
|
|
SvelteComponent,
|
|
|
|
appendStyleIfNotPresent,
|
|
|
|
append,
|
|
|
|
attr,
|
|
|
|
attr,
|
|
|
|
detach,
|
|
|
|
detach,
|
|
|
|
element,
|
|
|
|
element,
|
|
|
@ -11,8 +11,11 @@ import {
|
|
|
|
safe_not_equal
|
|
|
|
safe_not_equal
|
|
|
|
} from "svelte/internal";
|
|
|
|
} from "svelte/internal";
|
|
|
|
|
|
|
|
|
|
|
|
function add_css(customStyleTag) {
|
|
|
|
function add_css() {
|
|
|
|
appendStyleIfNotPresent(customStyleTag || document.head, "svelte-1slhpfn-style", "@media(min-width: 1px){div.svelte-1slhpfn{color:red}}");
|
|
|
|
var style = element("style");
|
|
|
|
|
|
|
|
style.id = "svelte-1slhpfn-style";
|
|
|
|
|
|
|
|
style.textContent = "@media(min-width: 1px){div.svelte-1slhpfn{color:red}}";
|
|
|
|
|
|
|
|
append(document.head, style);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function create_fragment(ctx) {
|
|
|
|
function create_fragment(ctx) {
|
|
|
@ -38,7 +41,8 @@ function create_fragment(ctx) {
|
|
|
|
class Component extends SvelteComponent {
|
|
|
|
class Component extends SvelteComponent {
|
|
|
|
constructor(options) {
|
|
|
|
constructor(options) {
|
|
|
|
super();
|
|
|
|
super();
|
|
|
|
init(this, options, null, create_fragment, safe_not_equal, {}, add_css);
|
|
|
|
if (!document.getElementById("svelte-1slhpfn-style")) add_css();
|
|
|
|
|
|
|
|
init(this, options, null, create_fragment, safe_not_equal, {});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|