fix(rtl): fix textarea padding direction in RTL

Replace physical pl-3/pr-10 with logical padding-inline-start/end
so the large padding (for nav buttons) is on the correct side in RTL.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
MusiCode
2026-03-18 02:23:42 +00:00
committed by Shantur Rathore
parent eb77c06571
commit 0e96662a07

View File

@@ -35,7 +35,9 @@
}
.prompt-input {
@apply w-full pl-3 pr-10 pt-2.5 border text-sm resize-none outline-none transition-colors;
@apply w-full pt-2.5 border text-sm resize-none outline-none transition-colors;
padding-inline-start: 0.75rem;
padding-inline-end: 2.5rem;
font-family: inherit;
background-color: var(--surface-base);
color: var(--text-primary);