summaryrefslogtreecommitdiff
path: root/examples/blog/src/components
diff options
context:
space:
mode:
authorGravatar Tony Sullivan <tony.f.sullivan@outlook.com> 2022-03-09 21:52:31 +0000
committerGravatar GitHub <noreply@github.com> 2022-03-09 13:52:31 -0800
commit4b53a53c1b7df094b5bd194955ff1c4cf7cc809f (patch)
tree250c7cda1161b9874ace9bcc999f1cf97c0b7740 /examples/blog/src/components
parent43a5c06a9379fbe5f8f66e8fc9bf6879ad9b1dbf (diff)
downloadastro-4b53a53c1b7df094b5bd194955ff1c4cf7cc809f.tar.gz
astro-4b53a53c1b7df094b5bd194955ff1c4cf7cc809f.tar.zst
astro-4b53a53c1b7df094b5bd194955ff1c4cf7cc809f.zip
Update examples for 0.24.0 (#2740)
* removing Astro.resolve, adding sass dev dependencies * updating tailwind example to use ESM style imports * moving from `<style global>@import` to ESM imports * updating lockfile to pick up examples sass deps * chore(lint): ESLint fix Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'examples/blog/src/components')
-rw-r--r--examples/blog/src/components/BaseHead.astro5
1 files changed, 1 insertions, 4 deletions
diff --git a/examples/blog/src/components/BaseHead.astro b/examples/blog/src/components/BaseHead.astro
index f39f77338..20ca69212 100644
--- a/examples/blog/src/components/BaseHead.astro
+++ b/examples/blog/src/components/BaseHead.astro
@@ -1,5 +1,5 @@
---
-
+import '../styles/blog.css';
export interface Props {
title: string;
@@ -36,6 +36,3 @@ const { title, description, permalink } = Astro.props;
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap" />
-<style global>
- @import "../styles/blog.css";
-</style>