models: Kimi K3 via Together (1M window, vision); right-align the more/less toggle

Toggle also loses its underline.
This commit is contained in:
Rohit C Prasad
2026-07-30 10:32:47 -07:00
parent 1e819e0159
commit fe034c8b70
2 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ function ClampedUserText({ text }: { text: string }) {
<button
type="button"
onClick={() => setOpen((o) => !o)}
className="block mt-1.5 text-[12.5px] font-medium underline underline-offset-2 opacity-75 hover:opacity-100"
className="block ml-auto mt-1.5 text-[12.5px] font-medium opacity-75 hover:opacity-100"
>
{open ? "less…" : "more…"}
</button>