We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4839b64 commit fd2e7c1Copy full SHA for fd2e7c1
2 files changed
src/components/Timeline/Timeline.tsx
@@ -22,6 +22,7 @@ const TimelineContent = ({
22
23
<motion.div
24
style={{
25
+ width: '100%',
26
border: `1px solid gray`, // Initial border color
27
display: 'flex',
28
alignItems: 'center',
src/screens/mainFlow/contents/Work.tsx
@@ -32,6 +32,7 @@ const WorkUIData = () => {
32
const [isOpen, setIsOpen] = useState(false);
33
return (
34
<Box
35
+ w={'full'}
36
padding={4}
37
onMouseEnter={() => setIsOpen(true)}
38
onMouseLeave={() => setIsOpen(false)}
0 commit comments