Skip to content

Commit

Permalink
Bump the npm group with 2 updates (brioche-dev#23)
Browse files Browse the repository at this point in the history
* Bump the npm group with 2 updates

Bumps the npm group with 2 updates: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) and [prettier](https://github.com/prettier/prettier).


Updates `astro` from 5.2.5 to 5.3.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/[email protected]/packages/astro)

Updates `prettier` from 3.4.2 to 3.5.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.4.2...3.5.1)

---
updated-dependencies:
- dependency-name: astro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fix Prettier formatting

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kyle Lacy <[email protected]>
  • Loading branch information
dependabot[bot] and kylewlacy authored Feb 18, 2025
1 parent cf96905 commit 16ff1e8
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 32 deletions.
17 changes: 9 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@astrojs/starlight": "^0.31.1",
"@astrojs/starlight-tailwind": "^3.0.0",
"@astrojs/tailwind": "^5.1.5",
"astro": "^5.2.5",
"astro": "^5.3.0",
"astro-robots-txt": "^1.0.0",
"clsx": "^2.1.1",
"markdown-it": "^14.1.0",
Expand All @@ -32,7 +32,7 @@
"@tailwindcss/typography": "^0.5.16",
"@types/markdown-it": "^14.1.1",
"@types/sanitize-html": "^2.11.0",
"prettier": "^3.2.5",
"prettier": "^3.5.1",
"prettier-plugin-astro": "^0.14.1"
}
}
48 changes: 26 additions & 22 deletions src/starlight-props.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,15 @@
--sl-color-backdrop-overlay: hsla(223, 13%, 10%, 0.66);

/* Shadows (dark mode) */
--sl-shadow-sm: 0px 1px 1px hsla(0, 0%, 0%, 0.12),
0px 2px 1px hsla(0, 0%, 0%, 0.24);
--sl-shadow-md: 0px 8px 4px hsla(0, 0%, 0%, 0.08),
0px 5px 2px hsla(0, 0%, 0%, 0.08), 0px 3px 2px hsla(0, 0%, 0%, 0.12),
0px 1px 1px hsla(0, 0%, 0%, 0.15);
--sl-shadow-lg: 0px 25px 7px hsla(0, 0%, 0%, 0.03),
0px 16px 6px hsla(0, 0%, 0%, 0.1), 0px 9px 5px hsla(223, 13%, 10%, 0.33),
0px 4px 4px hsla(0, 0%, 0%, 0.75), 0px 4px 2px hsla(0, 0%, 0%, 0.25);
--sl-shadow-sm:
0px 1px 1px hsla(0, 0%, 0%, 0.12), 0px 2px 1px hsla(0, 0%, 0%, 0.24);
--sl-shadow-md:
0px 8px 4px hsla(0, 0%, 0%, 0.08), 0px 5px 2px hsla(0, 0%, 0%, 0.08),
0px 3px 2px hsla(0, 0%, 0%, 0.12), 0px 1px 1px hsla(0, 0%, 0%, 0.15);
--sl-shadow-lg:
0px 25px 7px hsla(0, 0%, 0%, 0.03), 0px 16px 6px hsla(0, 0%, 0%, 0.1),
0px 9px 5px hsla(223, 13%, 10%, 0.33), 0px 4px 4px hsla(0, 0%, 0%, 0.75),
0px 4px 2px hsla(0, 0%, 0%, 0.25);

/* Text size and line height */
--sl-text-2xs: 0.75rem; /* 12px */
Expand Down Expand Up @@ -117,14 +118,16 @@
--sl-line-height: 1.75;
--sl-line-height-headings: 1.2;

--sl-font-system: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
--sl-font-system:
ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--sl-font-system-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
"Liberation Mono", "Courier New", monospace;
--sl-font-system-mono:
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
"Courier New", monospace;
--__sl-font: var(--sl-font, var(--sl-font-system)), var(--sl-font-system);
--__sl-font-mono: var(--sl-font-mono, var(--sl-font-system-mono)),
var(--sl-font-system-mono);
--__sl-font-mono:
var(--sl-font-mono, var(--sl-font-system-mono)), var(--sl-font-system-mono);

/** Key layout values */
--sl-nav-height: 3.5rem;
Expand Down Expand Up @@ -192,14 +195,15 @@
--sl-color-backdrop-overlay: hsla(225, 9%, 36%, 0.66);

/* Shadows (light mode) */
--sl-shadow-sm: 0px 1px 1px hsla(0, 0%, 0%, 0.06),
0px 2px 1px hsla(0, 0%, 0%, 0.06);
--sl-shadow-md: 0px 8px 4px hsla(0, 0%, 0%, 0.03),
0px 5px 2px hsla(0, 0%, 0%, 0.03), 0px 3px 2px hsla(0, 0%, 0%, 0.06),
0px 1px 1px hsla(0, 0%, 0%, 0.06);
--sl-shadow-lg: 0px 25px 7px rgba(0, 0, 0, 0.01),
0px 16px 6px hsla(0, 0%, 0%, 0.03), 0px 9px 5px hsla(223, 13%, 10%, 0.08),
0px 4px 4px hsla(0, 0%, 0%, 0.16), 0px 4px 2px hsla(0, 0%, 0%, 0.04);
--sl-shadow-sm:
0px 1px 1px hsla(0, 0%, 0%, 0.06), 0px 2px 1px hsla(0, 0%, 0%, 0.06);
--sl-shadow-md:
0px 8px 4px hsla(0, 0%, 0%, 0.03), 0px 5px 2px hsla(0, 0%, 0%, 0.03),
0px 3px 2px hsla(0, 0%, 0%, 0.06), 0px 1px 1px hsla(0, 0%, 0%, 0.06);
--sl-shadow-lg:
0px 25px 7px rgba(0, 0, 0, 0.01), 0px 16px 6px hsla(0, 0%, 0%, 0.03),
0px 9px 5px hsla(223, 13%, 10%, 0.08), 0px 4px 4px hsla(0, 0%, 0%, 0.16),
0px 4px 2px hsla(0, 0%, 0%, 0.04);
}

@media (min-width: 50em) {
Expand Down

0 comments on commit 16ff1e8

Please sign in to comment.