Improve read marker

Fix login from sidebar (issue #31), initial message sending (issue #30), remove "open keanu app" (issue #29).
This commit is contained in:
N-Pex 2021-01-15 11:50:21 +01:00
parent 62fbe3e949
commit a2dd26348c
4 changed files with 69 additions and 43 deletions

View file

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