File tree Expand file tree Collapse file tree
data/GlobalStylesProvider Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const CustomStyles = createGlobalStyle<GlobalStyleProps>`
1212 --primary-s: ${ ( { primaryColor } ) => primaryColor ?. s } ;
1313 --primary-l: ${ ( { primaryColor } ) => primaryColor ?. l } ;
1414 --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
15- --primary-light: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.1 );
15+ --primary-light: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.4 );
1616 --primary-dark: hsl(var(--primary-h), var(--primary-s), calc(var(--primary-l) * 0.5));
1717 --contrast-threshold: 75%;
1818 --switch: calc((var(--primary-l) - var(--contrast-threshold)) * -10000);
Original file line number Diff line number Diff line change @@ -71,16 +71,16 @@ const AccordionTab = styled.div`
7171 }
7272`
7373const AccordionTabHeader = styled . div `
74- ${ tw `text-black relative flex items-start justify-between pb-3 pt-5 cursor-pointer transition ease-in-out duration-500 focus:bg-gray-400 md:pt-6 md:pb-0` }
74+ ${ tw `text-black relative flex items-start justify-between pb-3 pt-5 cursor-pointer transition ease-in-out duration-100 focus:bg-gray-400 md:pt-6 md:pb-0` }
7575 .disabled & {
7676 ${ tw `pointer-events-none` }
7777 }
7878`
7979const AccordionTitle = styled . div `
80- ${ tw `transition ease-in-out duration-500 ` }
80+ ${ tw `transition ease-in-out duration-100 ` }
8181`
8282const AccordionIcon = styled . div `
83- ${ tw `transform transition ease-in-out duration-500 ` }
83+ ${ tw `transform transition ease-in-out duration-100 ` }
8484 .active & {
8585 ${ tw `-rotate-180` }
8686 }
@@ -90,7 +90,7 @@ const AccordionIcon = styled.div`
9090 }
9191`
9292const AccordionBody = styled . div `
93- ${ tw `max-h-0 transition duration-200 ease-in opacity-0` }
93+ ${ tw `max-h-0 transition duration-100 ease-in opacity-0` }
9494 .active & {
9595 ${ tw `max-h-full opacity-100` }
9696 }
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { css } from "styled-components"
22import tw from "twin.macro"
33
44export const InputCss = css `
5- ${ tw `text-black block w-full border-gray-300 border rounded-md p-3 transition duration-500 ease-in-out focus : border-primary focus : ring focus : ring-offset-0 focus : ring-primary-light focus : ring-opacity-50 sm : text-sm ` }
5+ ${ tw `text-black block w-full border-gray-300 border rounded-md shadow-sm p-3 transition duration-100 ease-in-out focus : border-primary focus : ring focus : ring-offset-0 focus : ring-primary-light focus : ring-opacity-50 sm : text-sm ` }
66
77 & : -webkit-autofill {
88 & ,
You can’t perform that action at this time.
0 commit comments