File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
examples/kendo-unstyled-tailwind/src Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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]` ,
Original file line number Diff line number Diff line change 1+ /// <reference path="../.astro/types.d.ts" />
12/// <reference types="astro/client" />
Original file line number Diff line number Diff line change 11---
22import Layout from ' ../layouts/Layout.astro' ;
33import 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 >
You can’t perform that action at this time.
0 commit comments