Skip to content

Commit 79da966

Browse files
committed
fix margins
1 parent 550d2c8 commit 79da966

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/src/components/Aside.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const { variant } = Astro.props as Props;
1010

1111
<div
1212
class:list={[
13-
"my-3 rounded-lg border-s-4 px-4 py-3 prose-p:my-0",
13+
"mb-6 rounded-lg border-s-4 px-4 py-3 prose-p:my-0",
1414
{
1515
"border-purple-400 bg-purple-400/10 text-purple-950 dark:bg-purple-500/20 dark:text-purple-100 prose-code:[p_&]:bg-purple-600/10 prose-code:dark:[p_&]:bg-white/20":
1616
variant === "tip",

docs/src/components/AutoScreenshot.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const image = fs.readFileSync(new URL(
1111
const dimensions = probe.sync(image);
1212
---
1313

14-
<div style={`aspect-ratio: ${dimensions.width} / ${dimensions.height}`} class="rounded-xl ring-1 ring-gray-950/5 dark:bg-gray-900 dark:ring-white/10">
14+
<div style={`aspect-ratio: ${dimensions.width} / ${dimensions.height}`} class="rounded-xl mb-6 ring-1 ring-gray-950/5 dark:bg-gray-900 dark:ring-white/10">
1515
<img
1616
src={`/docs/${version}/images/light/${name}.jpg`}
1717
alt={alt}

docs/src/components/Disclosure.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<details
22
{...Astro.props}
3-
class="rounded-lg bg-[#ffede0] dark:bg-[#100f1b] border-2 border-[#ffd6b6] dark:border-[#282732] px-4 py-2 mb-3"
3+
class="rounded-lg bg-[#ffede0] dark:bg-[#100f1b] border-2 border-[#ffd6b6] dark:border-[#282732] px-4 py-2 mb-6"
44
>
55
<summary class="font-medium">
66
<slot name="summary" />

docs/src/components/LaracastsBanner.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if (series === 'building-advanced-components') {
2626
---
2727

2828
<div
29-
class="not-prose w-full max-w-5xl p-8 min-[900px]:p-10 rounded-2xl bg-gradient-to-t from-[#101E34] to-[#1A3053] text-white flex gap-3 min-[900px]:gap-10 items-start flex-col min-[900px]:flex-row"
29+
class="not-prose w-full max-w-5xl p-8 min-[900px]:p-10 rounded-2xl bg-gradient-to-t from-[#101E34] to-[#1A3053] text-white flex gap-3 min-[900px]:gap-10 items-start flex-col min-[900px]:flex-row mb-6"
3030
>
3131
<div class="flex min-[900px]:flex-col items-center gap-y-3 gap-x-5 shrink-0 min-[900px]:pt-1.5">
3232
<!-- Filament Logo -->

docs/src/components/RadioGroup.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const { model } = Astro.props;
3939
x-id="['radio-group-label']"
4040
x-model={model}
4141
x-modelable="value"
42-
class="not-prose grid gap-3 max-w-lg w-full"
42+
class="not-prose grid gap-3 max-w-lg w-full mb-6"
4343
>
4444
<label x-bind:id="$id('radio-group-label')" role="none" class="sr-only">
4545
Selected option: <span x-text="value"></span>

docs/src/components/Tabs.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const { headers } = Astro.props;
2121
}
2222
}"
2323
x-id="['tab']"
24-
class="not-prose my-6"
24+
class="not-prose mb-6"
2525
>
2626
<ul
2727
x-ref="tablist"

docs/src/components/UtilityInjection.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ const link = {
310310
}[set]
311311
---
312312

313-
<details class="rounded-lg bg-[#ffede0] dark:bg-[#100f1b] border-2 border-[#ffd6b6] dark:border-[#282732] px-4 py-2">
313+
<details class="rounded-lg mb-6 bg-[#ffede0] dark:bg-[#100f1b] border-2 border-[#ffd6b6] dark:border-[#282732] px-4 py-2">
314314
<summary class="font-medium">
315315
<slot />
316316
</summary>

0 commit comments

Comments
 (0)