💄 The height of the dividing line adjusts with font size (#15701)

This commit is contained in:
Jeffrey Chen 2025-08-29 10:50:34 +08:00 committed by GitHub
parent 1c57d0b696
commit 15f116f344
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -86,16 +86,16 @@
& > div {
padding-left: 100%;
position: relative;
height: 26px;
min-height: 1.625em;
&::after {
position: absolute;
content: " ";
height: 1px;
height: calc(1em / 16);
background-color: var(--b3-theme-background-light);
width: calc(100% - 1px);
left: 0;
top: 13px;
top: calc(1.625em / 2);
}
}
}