diff options
author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-26 20:29:16 +0100 |
---|---|---|
committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-26 20:29:16 +0100 |
commit | 530634fea254c344684d42fe7a1d5b4020f6a3ab (patch) | |
tree | beff3954c244bb2c89245a63d984fdea7c338659 /apps/website/src/components/base/Paragraph.astro | |
parent | 542fb33102902fd7461bee0c0ca8ab4d9ef58de0 (diff) | |
download | Nexus-530634fea254c344684d42fe7a1d5b4020f6a3ab.tar.gz Nexus-530634fea254c344684d42fe7a1d5b4020f6a3ab.tar.bz2 Nexus-530634fea254c344684d42fe7a1d5b4020f6a3ab.zip |
Footer + small tweaks
Diffstat (limited to 'apps/website/src/components/base/Paragraph.astro')
-rw-r--r-- | apps/website/src/components/base/Paragraph.astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/website/src/components/base/Paragraph.astro b/apps/website/src/components/base/Paragraph.astro index ffb1030..5ceaf6e 100644 --- a/apps/website/src/components/base/Paragraph.astro +++ b/apps/website/src/components/base/Paragraph.astro @@ -26,6 +26,6 @@ const className = [ ].join(' '); --- - <p class={className} {...props}> - {text || <slot/>} - </p> +<p class={className} {...props}> + {text || <slot/>} +</p> |