This commit is contained in:
2025-02-21 14:24:40 +07:00
parent ef51a9d6f4
commit 1b461f0e86
3 changed files with 50 additions and 6 deletions

View File

@@ -193,7 +193,8 @@ a {
display: none;
a {
display: block;
padding: 10px 10px 10px 45px;
padding: 10px;
margin-left: 25px;
position: relative;
&:hover {
text-decoration: underline;
@@ -205,7 +206,29 @@ a {
border-radius: 4px;
}
&:last-child {
margin: 0;
&::after {
display: none;
}
}
&::before {
content: "";
width: 8px;
height: 8px;
border-radius: 50%;
background: #79b0e2;
position: absolute;
top: 16px;
left: -16px;
z-index: 9;
}
&::after {
content: "";
width: 1px;
height: 100%;
background: #fff;
position: absolute;
top: 16px;
left: -12px;
}
}
&.active {