Compare commits
No commits in common. "1b3d51e64d3a8978bf9829dc7f795c8ec8a4f848" and "99d9d1341959bb7d5ca8e1ca4e383ea535a05264" have entirely different histories.
1b3d51e64d
...
99d9d13419
12 changed files with 59 additions and 19 deletions
6
package-lock.json
generated
6
package-lock.json
generated
|
|
@ -1814,9 +1814,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/caniuse-lite": {
|
"node_modules/caniuse-lite": {
|
||||||
"version": "1.0.30001751",
|
"version": "1.0.30001700",
|
||||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz",
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001700.tgz",
|
||||||
"integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==",
|
"integrity": "sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
let className: string = '';
|
let className: string = '';
|
||||||
export { className as class };
|
export { className as class };
|
||||||
export let src: string | null = null;
|
export let src: string | null = null;
|
||||||
export let alt: string = "";
|
export let alt: string | undefined = undefined;
|
||||||
export let size: number = 32;
|
export let size: number = 32;
|
||||||
export let black: boolean = false;
|
export let black: boolean = false;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,3 +22,6 @@
|
||||||
<slot />
|
<slot />
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -21,3 +21,5 @@
|
||||||
<slot />
|
<slot />
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
|
|
|
||||||
|
|
@ -26,3 +26,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@import "$src/app.css";
|
||||||
|
</style>
|
||||||
|
|
@ -46,9 +46,3 @@
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
|
||||||
:global {
|
|
||||||
@import '$src/app.css';
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
|
||||||
|
|
@ -123,3 +123,20 @@
|
||||||
<svelte:component this={data.content} />
|
<svelte:component this={data.content} />
|
||||||
</section>
|
</section>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@import '$src/app.css';
|
||||||
|
|
||||||
|
section > h1,
|
||||||
|
section > h2 {
|
||||||
|
@apply font-disket mb-4 font-bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
section > h1 {
|
||||||
|
@apply text-2xl sm:text-4xl;
|
||||||
|
}
|
||||||
|
|
||||||
|
section > h2 {
|
||||||
|
@apply text-xl sm:text-3xl;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -53,3 +53,7 @@
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@import '$src/app.css';
|
||||||
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -94,3 +94,7 @@
|
||||||
>
|
>
|
||||||
<svelte:component this={data.content} />
|
<svelte:component this={data.content} />
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@import '$src/app.css';
|
||||||
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -43,3 +43,7 @@
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@import '$src/app.css';
|
||||||
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -15,3 +15,7 @@
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<WarningBlock>Страница находится в разработке!</WarningBlock>
|
<WarningBlock>Страница находится в разработке!</WarningBlock>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@import '$src/app.css';
|
||||||
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -15,3 +15,7 @@
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<WarningBlock>Страница находится в разработке!</WarningBlock>
|
<WarningBlock>Страница находится в разработке!</WarningBlock>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
@import '$src/app.css';
|
||||||
|
</style>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue