@@ -175,14 +175,14 @@ export const SettingsPermissions: Component = () => {
175175
176176 return (
177177 < div class = "flex flex-col h-full overflow-y-auto no-scrollbar" >
178- < div class = "sticky top-0 z-10 bg-[linear-gradient(to_bottom,var(--surface-raised-stronger-non-alpha)_calc(100%_-_24px),transparent)]" >
179- < div class = "flex flex-col gap-1 p-8 max-w-[720px]" >
178+ < div class = "sticky top-0 z-10 bg-[linear-gradient(to_bottom,var(--surface-raised-stronger-non-alpha)_calc(100%_-_24px),transparent)]" >
179+ < div class = "flex flex-col gap-1 px-4 py-8 sm: p-8 max-w-[720px]" >
180180 < h2 class = "text-16-medium text-text-strong" > { language . t ( "settings.permissions.title" ) } </ h2 >
181181 < p class = "text-14-regular text-text-weak" > { language . t ( "settings.permissions.description" ) } </ p >
182182 </ div >
183183 </ div >
184184
185- < div class = "flex flex-col gap-6 p-8 pt-6 max-w-[720px]" >
185+ < div class = "flex flex-col gap-6 px-4 py-6 sm: p-8 sm: pt-6 max-w-[720px]" >
186186 < div class = "flex flex-col gap-2" >
187187 < h3 class = "text-14-medium text-text-strong" > { language . t ( "settings.permissions.section.tools" ) } </ h3 >
188188 < div class = "border border-border-weak-base rounded-lg overflow-hidden" >
@@ -217,8 +217,8 @@ interface SettingsRowProps {
217217
218218const SettingsRow : Component < SettingsRowProps > = ( props ) => {
219219 return (
220- < div class = "flex items-center justify-between gap-4 px-4 py-3 border-b border-border-weak-base last:border-none" >
221- < div class = "flex flex-col gap-0.5" >
220+ < div class = "flex flex-wrap items-center justify-between gap-4 px-4 py-3 border-b border-border-weak-base last:border-none" >
221+ < div class = "flex flex-col gap-0.5 min-w-0 " >
222222 < span class = "text-14-medium text-text-strong" > { props . title } </ span >
223223 < span class = "text-12-regular text-text-weak" > { props . description } </ span >
224224 </ div >
0 commit comments