CSS cleanup
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jared He 2022-08-21 06:02:57 -04:00
parent c1b8ae469f
commit 59b476cd5e
2 changed files with 4 additions and 6 deletions

View File

@ -59,17 +59,15 @@
}
.text {
position: absolute;
height: fit-content;
margin: 0px;
padding: 5px;
border-radius: 10px;
font-size: 20px;
font-weight: 700;
color: var(--label);
background-color: var(--card-background);
position: relative;
height: fit-content;
word-wrap: break-word;
border-radius: 10px;
padding: 5px;
box-sizing: border-box;
}

View File

@ -68,7 +68,7 @@ export default function Home() {
<h2>
<code>{"<Timeline />"}</code>
</h2>
<Timeline data={mockTimelineData} width={800} height={1600} />
<Timeline data={mockTimelineData} width={800} height={1500} />
</div>
);
}