Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pouyio committed May 12, 2024
1 parent 9d15a24 commit fb6c523
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/components/Collapsable/Collapsable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@ const Collapsable: React.FC<React.PropsWithChildren<ICollapsableProps>> = ({
<div className="flex flex-col">
<motion.div
ref={ref}
className={`leading-tight font-light overflow-hidden relative ${
isButtonShown && !opened ? 'collapsable' : ''
}`}
className={`leading-tight font-light overflow-hidden relative ${isButtonShown && !opened ? 'collapsable' : ''
}`}
initial={{
height: isButtonShown
? opened
Expand Down
2 changes: 1 addition & 1 deletion src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ body,

@media (prefers-color-scheme: dark) {
:root {
color-scheme: dark
color-scheme: dark;
}
body {
background-color: black;
Expand Down

0 comments on commit fb6c523

Please sign in to comment.