-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tigher spacing; prettier; optional footer
- Loading branch information
Showing
5 changed files
with
155 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"plugins": ["@shopify/prettier-plugin-liquid"] | ||
} |
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,18 +1,21 @@ | ||
--- | ||
layout: base | ||
--- | ||
|
||
<div class="fixed inset-0 flex justify-center sm:px-8"><div class="flex w-full max-w-7xl lg:px-8"><div class="w-full bg-white ring-1 ring-zinc-100 dark:bg-zinc-900 dark:ring-zinc-300/20"></div></div></div> | ||
<div class="fixed inset-0 flex justify-center sm:px-8"> | ||
<div class="flex w-full max-w-5xl lg:px-8"> | ||
<div | ||
class="w-full bg-white ring-1 ring-zinc-100 dark:bg-zinc-900 dark:ring-zinc-300/20" | ||
></div> | ||
</div> | ||
</div> | ||
<div class="relative flex w-full flex-col"> | ||
{% include header.html %} | ||
<main class="flex-auto"> | ||
<div class="sm:px-8 mt-9"> | ||
<div class="mx-auto w-full max-w-7xl lg:px-8"> | ||
<div class="relative px-4 sm:px-8 lg:px-12"> | ||
{{content}} | ||
</div> | ||
<div class="mx-auto w-full max-w-5xl lg:px-8"> | ||
<div class="relative px-4 sm:px-8 lg:px-12">{{ content }}</div> | ||
</div> | ||
</div> | ||
</main> | ||
{% include footer.html %} | ||
{% unless page.skipFooter == true %} {% include footer.html %} {% endunless %} | ||
</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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
{ | ||
"name": "jcmcginnis-2022", | ||
"devDependencies": { | ||
"@shopify/prettier-plugin-liquid": "^1.4.4", | ||
"@tailwindcss/typography": "^0.5.9", | ||
"autoprefixer": "^10.4.14", | ||
"cssnano": "^6.0.1", | ||
"postcss": "^8.4.24", | ||
"postcss-import": "^15.1.0", | ||
"postcss-nested": "^6.0.1", | ||
"prettier": "3.2.5", | ||
"tailwindcss": "^3.4.3" | ||
} | ||
} |