Few improvement
This commit is contained in:
parent
edbe90de42
commit
fb58e56dad
2 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
.timeline {
|
.timeline {
|
||||||
@apply w-full max-w-5xl flex justify-center;
|
@apply w-full p-5;
|
||||||
|
|
||||||
& > ul {
|
& > 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 {
|
& > li {
|
||||||
@apply mb-12 relative flex;
|
@apply mb-12 relative flex;
|
||||||
|
|
|
@ -9,7 +9,7 @@ function Timeline({ children } : TimelapseProps) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='timeline'>
|
<div className='timeline'>
|
||||||
<ul>
|
<ul className='timeline'>
|
||||||
{ children }
|
{ children }
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue