Skip to content

Commit 8e822f1

Browse files
committed
chore: update styles and fix errors in unstyled tailwind app
1 parent 427bbd7 commit 8e822f1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/kendo-unstyled-tailwind/src/components/Form/tailwind-preset.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,8 @@ const tailwindForm: AllClassStructure = {
425425
rangeSplitEnd: `relative after:content-[""] after:block after:absolute after:top-[0] after:bottom-[0] after:w-[5px]`,
426426
rangeSplitStart: `relative after:content-[""] after:block after:absolute after:top-[0] after:bottom-[0] after:w-[5px]`,
427427
active: ``,
428-
focused: `!border-solid-border !border-[1] !text-focused-text bg-focused rounded`,
429-
selected: `border-solid-border bg-primary rounded`,
428+
focused: `!border-solid-border !border-[1] text-focused-text bg-focused rounded`,
429+
selected: `border-solid-border bg-primary !text-primary-text rounded`,
430430
today: `[&>span]:text-primary`,
431431
weekend: ``,
432432
disabled: `outline-[none] cursor-default opacity-60 grayscale-[10%] pointer-events-none [box-shadow:none]`,
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
/// <reference path="../.astro/types.d.ts" />
12
/// <reference types="astro/client" />
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
---
22
import Layout from '../layouts/Layout.astro';
33
import Template from '../components/Form/Form.tsx';
4-
import Home from '../components/Home';
54
---
65

76
<Layout title="Welcome to Astro.">
87
<main>
9-
<Home client:load />
8+
<Template client:load />
109
</main>
1110
</Layout>

0 commit comments

Comments
 (0)