diff options
Diffstat (limited to 'examples/deno/src/components/Layout.astro')
-rw-r--r-- | examples/deno/src/components/Layout.astro | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/examples/deno/src/components/Layout.astro b/examples/deno/src/components/Layout.astro index 7d329d0a4..7bcbd218c 100644 --- a/examples/deno/src/components/Layout.astro +++ b/examples/deno/src/components/Layout.astro @@ -6,7 +6,7 @@ interface Props { const { title } = Astro.props as Props; --- -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> @@ -46,8 +46,15 @@ const { title } = Astro.props as Props; } :global(code) { - font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, - Bitstream Vera Sans Mono, Courier New, monospace; + font-family: + Menlo, + Monaco, + Lucida Console, + Liberation Mono, + DejaVu Sans Mono, + Bitstream Vera Sans Mono, + Courier New, + monospace; } </style> </body> |