@@ -111,7 +111,7 @@ export default function SettingsEnvironmentsRouteScreen() {
111111 type = "monochrome"
112112 />
113113 </ View >
114- < Text className = "text-center text-[14px] leading-[20px] text-foreground-muted" >
114+ < Text className = "text-center text-sm leading-[20px] text-foreground-muted" >
115115 No environments connected yet.{ "\n" } Tap{ " " }
116116 < Text className = "font-t3-bold text-foreground" > +</ Text > to add one.
117117 </ Text >
@@ -160,7 +160,7 @@ function ConfiguredCloudEnvironmentRows(props: {
160160 return (
161161 < View collapsable = { false } className = "mt-5 gap-3" >
162162 < View className = "flex-row items-center justify-between px-1" >
163- < Text className = "text-[13px] font-t3-bold uppercase text-foreground-muted" > T3 Cloud</ Text >
163+ < Text className = "text-sm font-t3-bold uppercase text-foreground-muted" > T3 Cloud</ Text >
164164 < Pressable
165165 accessibilityRole = "button"
166166 disabled = { controller . relayDiscovery . isRefreshing }
@@ -204,16 +204,16 @@ function ConfiguredCloudEnvironmentRows(props: {
204204 ) : controller . relayDiscovery . isRefreshing ? (
205205 < View collapsable = { false } className = "items-center gap-3 rounded-[24px] bg-card p-6" >
206206 < ActivityIndicator color = { iconColor } />
207- < Text className = "text-center text-[14px] leading-[20px] text-foreground-muted" >
207+ < Text className = "text-center text-sm leading-[20px] text-foreground-muted" >
208208 Loading linked cloud environments.
209209 </ Text >
210210 </ View >
211211 ) : controller . relayDiscovery . error ? (
212212 < View collapsable = { false } className = "gap-3 rounded-[24px] bg-card p-5" >
213- < Text className = "text-[15px] font-t3-bold text-foreground" >
213+ < Text className = "text-base font-t3-bold text-foreground" >
214214 Could not load T3 Cloud environments
215215 </ Text >
216- < Text className = "text-[13px] leading-[18px] text-foreground-muted" >
216+ < Text className = "text-sm leading-[18px] text-foreground-muted" >
217217 { controller . relayDiscovery . error }
218218 </ Text >
219219 { controller . relayDiscovery . errorTraceId ? (
@@ -222,7 +222,7 @@ function ConfiguredCloudEnvironmentRows(props: {
222222 </ View >
223223 ) : (
224224 < View collapsable = { false } className = "rounded-[24px] bg-card p-5" >
225- < Text className = "text-[14px] leading-[20px] text-foreground-muted" >
225+ < Text className = "text-sm leading-[20px] text-foreground-muted" >
226226 No additional linked cloud environments.
227227 </ Text >
228228 </ View >
@@ -361,7 +361,7 @@ function CloudEnvironmentRowShell(props: {
361361 < View className = "min-w-0 flex-row items-center gap-2" >
362362 < ConnectionStatusDot state = { props . connectionState } pulse = { shouldPulse } size = { 7 } />
363363 < Text
364- className = "min-w-0 flex-shrink text-[16px] font-t3-bold leading-[21px] text-foreground"
364+ className = "min-w-0 flex-shrink text-base font-t3-bold leading-[21px] text-foreground"
365365 numberOfLines = { 1 }
366366 >
367367 { props . label }
@@ -370,7 +370,7 @@ function CloudEnvironmentRowShell(props: {
370370 { props . connectionError ? (
371371 < Text
372372 aria-hidden
373- className = { cn ( "absolute left-0 right-0 text-[12px] leading-[16px]" , statusClassName ) }
373+ className = { cn ( "absolute left-0 right-0 text-xs leading-[16px]" , statusClassName ) }
374374 onTextLayout = { onMeasuredErrorTextLayout }
375375 style = { { opacity : 0 , zIndex : - 1 } }
376376 >
@@ -384,7 +384,7 @@ function CloudEnvironmentRowShell(props: {
384384 className = "min-w-0 flex-row items-start gap-1"
385385 >
386386 < Text
387- className = { cn ( "min-w-0 flex-1 text-[12px] leading-[16px]" , statusClassName ) }
387+ className = { cn ( "min-w-0 flex-1 text-xs leading-[16px]" , statusClassName ) }
388388 numberOfLines = { isErrorExpanded ? undefined : 1 }
389389 >
390390 { statusText }
@@ -394,7 +394,7 @@ function CloudEnvironmentRowShell(props: {
394394 < Text
395395 accessibilityHint = "Copies the trace ID"
396396 accessibilityRole = "button"
397- className = { cn ( "text-[12px] leading-[16px] underline" , statusClassName ) }
397+ className = { cn ( "text-xs leading-[16px] underline" , statusClassName ) }
398398 onLongPress = { ( event ) => {
399399 event . stopPropagation ( ) ;
400400 copyTextWithHaptic ( errorTraceId ) ;
@@ -446,7 +446,7 @@ function CopyTraceIdButton(props: { readonly traceId: string }) {
446446 className = "self-start flex-row items-center gap-1.5 rounded-full bg-subtle px-3 py-2 active:opacity-70"
447447 >
448448 < SymbolView name = "doc.on.doc" size = { 12 } tintColor = { iconColor } type = "monochrome" />
449- < Text className = "text-[12px] font-t3-bold text-foreground" > Copy trace ID</ Text >
449+ < Text className = "text-xs font-t3-bold text-foreground" > Copy trace ID</ Text >
450450 </ Pressable >
451451 ) ;
452452}
0 commit comments