style read marker a bit

This commit is contained in:
N-Pex 2021-01-14 17:21:11 +01:00
parent 0671a9ec40
commit 62fbe3e949
3 changed files with 35 additions and 5 deletions

View file

@ -363,4 +363,34 @@
font-weight: 700;
font-size: 21 * $chat-text-size;
color: black;
}
.read-marker {
//display: block;
margin-top: 20px;
margin-bottom: 20px;
margin-left: 20px;
margin-right: 20px;
height: 1px;
line-height: var(--v-theme-title-featured-line-height);
position: relative;
font-family: sans-serif;
font-style: normal;
font-weight: bold;
font-size: 9.88014 * $chat-text-size;
line-height: 140%;
/* identical to box height, or 14px */
letter-spacing: 0.29px;
color: #9C9CAE;
background-color: #9C9CAE;
&::after {
position: absolute;
left: 10px;
top: -6px;
background: white;
padding-left: 10px;
padding-right: 10px;
content: attr(title);
}
}