-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from starboardcoop/0.1.0
0.1.0 🚀
- Loading branch information
Showing
22 changed files
with
2,283 additions
and
1,081 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<script> | ||
import Row from "./Row.svelte"; | ||
import Title from "./Title.svelte"; | ||
export let title = null; | ||
</script> | ||
|
||
<header class="w-full p-4 flex flex-col space-y-8 justify-center bg-long-city bg-cover border-b-2 border-gray-200"> | ||
<Row center> | ||
<a href="/"> | ||
<img src="/PVD_Things_Logo_White.png" alt="PVD Things" class="h-14 md:h-20 lg:h-24"/> | ||
</a> | ||
</Row> | ||
<Row center><slot /></Row> | ||
{#if title} | ||
<Row center><Title bold caps>{title}</Title></Row> | ||
{:else} | ||
<h1 hidden>PVD Things</h1> | ||
{/if} | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<main class="bg-indigo-300 min-h-screen w-screen"> | ||
<main class="bg-indigo-300 flex flex-col min-h-screen w-screen"> | ||
<slot /> | ||
</main> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
<div class="grid gap-4 grid-flow-row md:grid-flow-col"> | ||
<script> | ||
export let gap = "4"; | ||
export let center = false; | ||
</script> | ||
|
||
<div class:center class="grid gap-{gap} grid-flow-row md:grid-flow-col"> | ||
<slot /> | ||
</div> | ||
</div> | ||
|
||
<style> | ||
.center { | ||
@apply text-center; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script> | ||
import Typewriter from "svelte-typewriter"; | ||
import Row from "./Row.svelte"; | ||
import Heading from "./Heading.svelte"; | ||
</script> | ||
|
||
<Row> | ||
<Heading bold>></Heading> | ||
<Heading italic bold> | ||
<Typewriter interval={50} loop> | ||
<slot /> | ||
</Typewriter> | ||
</Heading> | ||
</Row> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
<h1 class="text-5xl md:text-6x text-white text-center"> | ||
<script> | ||
export let color = "white"; | ||
export let bold = false; | ||
export let caps = false; | ||
</script> | ||
|
||
<h1 class:bold class:caps class="text-3xl md:text-4xl text-{color} text-center max-w-max px-2 py-1 brutal bg-indigo-500 bg-opacity-75"> | ||
<slot /> | ||
</h1> | ||
</h1> | ||
|
||
<style> | ||
.bold { | ||
@apply font-bold; | ||
} | ||
.caps { | ||
@apply uppercase; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.