Few improvement

This commit is contained in:
Florian RICHER 2023-06-03 13:26:57 +02:00
parent edbe90de42
commit fb58e56dad
2 changed files with 3 additions and 3 deletions

View file

@ -1,8 +1,8 @@
.timeline {
@apply w-full max-w-5xl flex justify-center;
@apply w-full p-5;
& > ul {
@apply list-none py-5 px-0 relative w-full;
@apply list-none py-5 px-0 relative w-full max-w-5xl mx-auto;
& > li {
@apply mb-12 relative flex;

View file

@ -9,7 +9,7 @@ function Timeline({ children } : TimelapseProps) {
return (
<div className='timeline'>
<ul>
<ul className='timeline'>
{ children }
</ul>
</div>