-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Open local dev docs for feature branch (#40)
## Details - Set link to localhost for `Dev Docs` for local development Closes #30
- Loading branch information
1 parent
d70c4f5
commit eae17aa
Showing
3 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
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,15 @@ | ||
<script lang="ts"> | ||
import Header from '../../components/Header/Header.svelte'; | ||
import Footer from '../../components/Footer.svelte'; | ||
const logoHex = '#5E69FF'; | ||
const navColor = 'navy'; | ||
</script> | ||
|
||
<div class="relative lg:max-w-[100vw] xl:max-w-page"> | ||
<Header {logoHex} {navColor} /> | ||
<div class="mt-4 p-3"> | ||
<slot /> | ||
</div> | ||
<Footer /> | ||
</div> |
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 @@ | ||
<div class="mx-auto flex-grow justify-center px-4 sm:px-6 lg:px-8"></div> |