bugfix: fix title lines not rendering in chat messages

This commit is contained in:
Murilo Brito 2026-01-09 19:14:44 -03:00
parent 3553dc0cf3
commit b1e56e1cd6

View file

@ -102,17 +102,27 @@
.summons-header { .summons-header {
font-size: var(--font-size-14); font-size: var(--font-size-14);
text-align: center; text-align: center;
display: flex;
align-items: center;
justify-content: center;
span::before, span {
span::after { width: 100%;
color: @dark-blue;
} }
&:before,
&:after {
content: ' ';
height: 1px;
width: 100%;
}
&:before { &:before {
background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, @dark-blue 100%); background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, light-dark(@dark-blue, @golden) 100%);
} }
&:after { &:after {
background: linear-gradient(90deg, @dark-blue 0%, rgba(0, 0, 0, 0) 100%); background: linear-gradient(90deg, light-dark(@dark-blue, @golden) 0%, rgba(0, 0, 0, 0) 100%);
} }
} }