small fix: chat-input

This commit is contained in:
duckietm 2024-03-25 16:26:31 +01:00 committed by GitHub
parent 10b0591e0b
commit 47c8455b95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,6 @@
width: -webkit-fill-available;
@include media-breakpoint-down(xxl) {
display: flex;
position: absolute;
bottom: 70px;
left: 50%;
@ -25,7 +24,7 @@
content: '';
position: absolute;
width: 100%;
height: 5px;
height: 2px;
top: 1px;
left: 0;
right: 0;
@ -35,11 +34,10 @@
}
.input-sizer {
display: flex;
display: inline-grid;
vertical-align: top;
height: 100%;
padding: 0 10px;
width: 100%;
&::after,
input,
@ -54,7 +52,13 @@
border: none;
outline: none;
}
&::after {
content: attr(data-value) ' ';
visibility: hidden;
white-space: pre-wrap;
}
}
.colour-container {
@ -150,4 +154,4 @@
background-image: url("@/assets/images/boxes/card/questionmark_click.png");
}
}
}
}