Skip to content

Commit 69d7479

Browse files
authored
Fix formatting (#2381)
1 parent 4391bee commit 69d7479

File tree

6 files changed

+51
-30
lines changed

6 files changed

+51
-30
lines changed

src/app/(docs)/docs/installation/framework-guides/laravel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export let steps: Step[] = [
137137
name: "app.css",
138138
lang: "css",
139139
code: css`
140-
@import 'tailwindcss';
140+
@import "tailwindcss";
141141
142142
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
143143
@source '../../storage/framework/views/*.php';

src/app/sponsor/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ function PartnerPlans() {
565565
: "bg-sky-400/25 text-sky-700 dark:text-sky-400",
566566
)}
567567
>
568-
{plan.remaining} {plan.remaining === 1 ? 'spot' : 'spots'} left
568+
{plan.remaining} {plan.remaining === 1 ? "spot" : "spots"} left
569569
</p>
570570
)}
571571
</div>

src/app/sponsor/sponsors.tsx

Lines changed: 44 additions & 20 deletions
Large diffs are not rendered by default.

src/docs/colors.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const description = "Using and customizing the color palette in Tailwind
99

1010
Tailwind CSS includes a vast, beautiful color palette out of the box, carefully crafted by expert designers and suitable for a wide range of different design styles.
1111

12-
<div className="my-10 relative">
12+
<div className="relative my-10">
1313
{/* <TipInfo>{<>Click to copy OKLCH, shift+click to copy nearest hex</>}</TipInfo> */}
1414
{/* <div className="mt-6"> */}
1515
<ColorPalette />

src/docs/preflight.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ This prevents them from overflowing their containers and makes them responsive b
185185

186186
```css
187187
/* [!code filename:CSS] */
188-
[hidden]:where(:not([hidden='until-found'])) {
188+
[hidden]:where(:not([hidden="until-found"])) {
189189
display: none !important;
190190
}
191191
```

src/docs/theme.mdx

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,12 +1029,9 @@ For reference, here's a complete list of the theme variables included by default
10291029

10301030
--text-shadow-2xs: 0px 1px 0px rgb(0 0 0 / 0.15);
10311031
--text-shadow-xs: 0px 1px 1px rgb(0 0 0 / 0.2);
1032-
--text-shadow-sm:
1033-
0px 1px 0px rgb(0 0 0 / 0.075), 0px 1px 1px rgb(0 0 0 / 0.075), 0px 2px 2px rgb(0 0 0 / 0.075);
1034-
--text-shadow-md:
1035-
0px 1px 1px rgb(0 0 0 / 0.1), 0px 1px 2px rgb(0 0 0 / 0.1), 0px 2px 4px rgb(0 0 0 / 0.1);
1036-
--text-shadow-lg:
1037-
0px 1px 2px rgb(0 0 0 / 0.1), 0px 3px 2px rgb(0 0 0 / 0.1), 0px 4px 8px rgb(0 0 0 / 0.1);
1032+
--text-shadow-sm: 0px 1px 0px rgb(0 0 0 / 0.075), 0px 1px 1px rgb(0 0 0 / 0.075), 0px 2px 2px rgb(0 0 0 / 0.075);
1033+
--text-shadow-md: 0px 1px 1px rgb(0 0 0 / 0.1), 0px 1px 2px rgb(0 0 0 / 0.1), 0px 2px 4px rgb(0 0 0 / 0.1);
1034+
--text-shadow-lg: 0px 1px 2px rgb(0 0 0 / 0.1), 0px 3px 2px rgb(0 0 0 / 0.1), 0px 4px 8px rgb(0 0 0 / 0.1);
10381035

10391036
--blur-xs: 4px;
10401037
--blur-sm: 8px;

0 commit comments

Comments
 (0)