Skip to content

Commit

Permalink
line height-dependent top/bubble calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
dummdidumm committed Oct 29, 2024
1 parent 2e046ab commit aed7f4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/site-kit/src/lib/components/Text.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -380,11 +380,11 @@
li::before {
content: '';
position: absolute;
top: 1.1rem;
top: calc((var(--sk-font-size-body) / var(--sk-line-height-body)) - 0.05lh);
left: -1.8rem;
background-color: var(--sk-text-4);
width: 0.6rem;
height: 0.6rem;
width: 0.2lh;
height: 0.2lh;
border-radius: 50%;
opacity: 0.7;
}
Expand Down

0 comments on commit aed7f4c

Please sign in to comment.