fix(web): hide SVG arrow in mobile send button to avoid double arrows

This commit is contained in:
qer 2026-06-10 14:21:36 +08:00 committed by haozhe.yang
parent f9ca3cf1b7
commit 84ad02a486

View file

@ -1465,7 +1465,7 @@ function selectModel(modelId: string): void {
gap: 6px;
}
/* Send → 36px round */
/* Send → 36px round (hide the SVG arrow, show only the ::after glyph) */
.send {
width: 36px;
height: 36px;
@ -1476,6 +1476,9 @@ function selectModel(modelId: string): void {
align-self: flex-end;
position: relative;
}
.send svg {
display: none;
}
.send::after {
content: "↑";
font-size: 17px;