diff options
author | 2023-09-29 02:17:46 +0800 | |
---|---|---|
committer | 2023-09-28 14:17:46 -0400 | |
commit | eb530e9b61f082de17fd41d80af179c0cd8cdd72 (patch) | |
tree | de7b0abd112968d3fe4d084936ebe4d427cd6075 /examples/deno/src/components/Layout.astro | |
parent | 2d33b9362d43a0a13e200971952f91eaba8cced6 (diff) | |
download | astro-eb530e9b61f082de17fd41d80af179c0cd8cdd72.tar.gz astro-eb530e9b61f082de17fd41d80af179c0cd8cdd72.tar.zst astro-eb530e9b61f082de17fd41d80af179c0cd8cdd72.zip |
Remove the Deno example (#8697)
Diffstat (limited to 'examples/deno/src/components/Layout.astro')
-rw-r--r-- | examples/deno/src/components/Layout.astro | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/examples/deno/src/components/Layout.astro b/examples/deno/src/components/Layout.astro deleted file mode 100644 index 7bcbd218c..000000000 --- a/examples/deno/src/components/Layout.astro +++ /dev/null @@ -1,61 +0,0 @@ ---- -interface Props { - title: string; -} - -const { title } = Astro.props as Props; ---- - -<!doctype html> -<html lang="en"> - <head> - <meta charset="UTF-8" /> - <meta name="viewport" content="width=device-width" /> - <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> - <title>{title}</title> - </head> - <body> - <slot /> - <style> - :root { - --font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.19rem); - --font-size-lg: clamp(1.2rem, 0.7vw + 1.2rem, 1.5rem); - --font-size-xl: clamp(2.44rem, 2.38vw + 1.85rem, 3rem); - - --color-text: hsl(12, 5%, 4%); - --color-bg: hsl(10, 21%, 95%); - } - - html { - font-family: system-ui, sans-serif; - font-size: var(--font-size-base); - color: var(--color-text); - background-color: var(--color-bg); - } - - body { - margin: 0; - } - - :global(h1) { - font-size: var(--font-size-xl); - } - - :global(h2) { - font-size: var(--font-size-lg); - } - - :global(code) { - font-family: - Menlo, - Monaco, - Lucida Console, - Liberation Mono, - DejaVu Sans Mono, - Bitstream Vera Sans Mono, - Courier New, - monospace; - } - </style> - </body> -</html> |