diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-23 19:11:31 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-23 19:11:31 +0100 |
| commit | c151d65c12bb2879c0b66e7e1b9ece5bea35ea7a (patch) | |
| tree | c106da439da722c1f5c56e2a38f2423902eda60b /src/components | |
| parent | 46f83e14bc0dca5376f21eb265d597a6ccf21d0c (diff) | |
Better prose width handling
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Button.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Button.astro b/src/components/Button.astro index 757eac2..9cc3885 100644 --- a/src/components/Button.astro +++ b/src/components/Button.astro @@ -1,7 +1,7 @@ --- import type Digit from '$types/Digit'; -type LayoutClasses = `grid-span-${Digit}` | `grid-span-${Digit} grid-end`; +type LayoutClasses = `grid-span-${Digit}${'' | ' grid-end' | ' grid-prose-end'}`; interface Props { href: string; |
