angular-comment-mentions/src/app/comment-box/comment-box.component.scss
2024-12-09 13:07:12 +01:00

27 lines
440 B
SCSS

:host ::ng-deep .comment-box {
height: 4rem;
overflow-y: scroll;
&:focus {
outline: none;
}
.mention {
display: inline-block;
position: relative;
&:not(.ignore) {
color: blue;
background-color: transparent;
font-style: italic;
font-size: 0.8rem;
font-weight: bold;
}
}
}
:host.floating span {
opacity: 1;
}