mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-08-27 09:34:43 +00:00
fix(web): hide SVG arrow in mobile send button to avoid double arrows
This commit is contained in:
parent
f9ca3cf1b7
commit
84ad02a486
1 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue