Skip to content

Commit

Permalink
run yarn docs:typescript:formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
zanivan committed Oct 18, 2023
1 parent 3326e96 commit 9f883a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ function Styles() {
background: ${isDarkMode ? grey[900] : '#fff'};
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
box-shadow: 0px 2px 2px ${isDarkMode ? grey[900] : grey[50]};
box-shadow: 0px 2px 4px ${
isDarkMode ? 'rgba(0,0,0, 0.5)' : 'rgba(0,0,0, 0.05)'
};
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 120ms;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ function Styles() {
border: 1px solid ${isDarkMode ? grey[700] : grey[200]};
color: ${isDarkMode ? grey[300] : grey[900]};
position: relative;
box-shadow: 0px 4px 6px ${
isDarkMode ? 'rgba(0,0,0, 0.50)' : 'rgba(0,0,0, 0.05)'
box-shadow: 0px 2px 4px ${
isDarkMode ? 'rgba(0,0,0, 0.5)' : 'rgba(0,0,0, 0.05)'
};
transition-property: all;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const Select = React.forwardRef(function CustomSelect(props, ref) {
return {
...resolvedSlotProps,
className: clsx(
`relative text-sm font-sans box-border w-80 px-3 py-2 rounded-lg text-left bg-white dark:bg-slate-800 border border-solid border-slate-300 dark:border-slate-700 text-slate-900 dark:text-slate-300 transition-all hover:bg-slate-50 dark:hover:bg-slate-700 outline-0 shadow-[0_4px_6px_rgb(0_0_0/_0.5)] dark:shadow-indigo-950 ${
`relative text-sm font-sans box-border w-80 px-3 py-2 rounded-lg text-left bg-white dark:bg-slate-800 border border-solid border-slate-300 dark:border-slate-700 text-slate-900 dark:text-slate-300 transition-all hover:bg-slate-50 dark:hover:bg-slate-700 outline-0 shadow-[0_2px_4px_rgb(0_0_0/_0.05)] dark:shadow-[0_2px_4px_rgb(0_0_0/_0.5)] ${
ownerState.focusVisible
? 'border-purple-400 shadow-outline-purple'
: ''
Expand Down

0 comments on commit 9f883a4

Please sign in to comment.