Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
3,874 changes: 3,141 additions & 733 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "accessible-astro-starter",
"version": "1.0.2",
"version": "1.0.3",
"private": true,
"scripts": {
"start": "astro dev",
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.1",
"astro": "^0.20.3",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
}
Expand Down
6 changes: 3 additions & 3 deletions src/layouts/DefaultLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let subtitle = 'Accessible Astro Starter'
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;600;800&display=swap" rel="stylesheet">

<!-- global css -->
<link rel="stylesheet" type="text/css" href="/styles/globals.css">
<link rel="stylesheet" href={Astro.resolve('../styles/globals.css')} />

<!-- open graph -->
<meta property="og:title" content="Accessible Astro Starter">
Expand Down Expand Up @@ -52,14 +52,14 @@ let subtitle = 'Accessible Astro Starter'

<style lang="scss">
// sticky footer on low content pages
html {
html,
body {
height: 100%;
}

body {
display: flex;
flex-direction: column;
height: 100%;
background-color: var(--background);

main { flex: 1 0 auto; }
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.