Add icon down
This commit is contained in:
parent
53cc774d52
commit
006efc5369
2 changed files with 19 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
import react, {Children, ReactNode} from 'react'
|
import react, {Children, ReactNode} from 'react'
|
||||||
import TimelineCardSummary from './TimelineCardSummary'
|
import TimelineCardSummary from './TimelineCardSummary'
|
||||||
|
import { FaCaretDown } from 'react-icons/fa'
|
||||||
|
|
||||||
type TimelineCardProps = {
|
type TimelineCardProps = {
|
||||||
children: react.ReactElement<any, react.JSXElementConstructor<any>>[]
|
children: react.ReactElement<any, react.JSXElementConstructor<any>>[]
|
||||||
|
@ -17,7 +18,10 @@ function TimelineCard({ children } : TimelineCardProps) {
|
||||||
});
|
});
|
||||||
return (
|
return (
|
||||||
<details>
|
<details>
|
||||||
<summary>{titles}</summary>
|
<summary>
|
||||||
|
{titles}
|
||||||
|
<i><FaCaretDown/></i>
|
||||||
|
</summary>
|
||||||
<div>{childrens}</div>
|
<div>{childrens}</div>
|
||||||
</details>
|
</details>
|
||||||
)
|
)
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
& > summary {
|
& > summary {
|
||||||
@apply block select-none cursor-pointer outline-none p-5 font-semibold;
|
@apply relative block select-none cursor-pointer outline-none p-5 pr-10 font-semibold;
|
||||||
|
|
||||||
// BEGIN TRANSITION
|
// BEGIN TRANSITION
|
||||||
@apply mb-0;
|
@apply mb-0;
|
||||||
|
@ -46,11 +46,24 @@
|
||||||
&:hover {
|
&:hover {
|
||||||
@apply bg-primary/20 dark:bg-dark_primary/20;
|
@apply bg-primary/20 dark:bg-dark_primary/20;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
i {
|
||||||
|
@apply absolute right-5 h-full top-0 flex items-center;
|
||||||
|
|
||||||
|
& > svg {
|
||||||
|
@apply scale-125;
|
||||||
|
transition: transform 300ms ease;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&[open] {
|
&[open] {
|
||||||
& > summary {
|
& > summary {
|
||||||
@apply mb-5; // TRANSITION
|
@apply mb-5; // TRANSITION
|
||||||
|
|
||||||
|
& > i > svg {
|
||||||
|
@apply -rotate-180;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue