Fix for line and drop to not break when more articles get added
This commit is contained in:
parent
10f7a6c840
commit
b91fcfcf8d
1 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@ const { title } = Astro.props
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: -20%;
|
bottom: -5rem;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
|
@ -40,8 +40,8 @@ const { title } = Astro.props
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
background-color: var(--c-darkpurple);
|
background-color: var(--c-darkpurple);
|
||||||
height: 120%;
|
height: calc(100% + 5rem);
|
||||||
translate: 0% 7.5%;
|
translate: 0% 2rem;
|
||||||
width: 0.25rem;
|
width: 0.25rem;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue