Matthias Nott
2026-03-07 e5f741ca0935b33c18dae6a7009987c88bc69241
components/SessionDrawer.tsx
....@@ -565,17 +565,16 @@
565565 {/* Home directory — always first */}
566566 <Pressable
567567 onPress={() => launchSession({ path: "~" })}
568
- style={({ pressed }) => ({
568
+ style={{
569569 flexDirection: "row",
570570 alignItems: "center",
571571 paddingHorizontal: 16,
572
- paddingVertical: 12,
573
- backgroundColor: pressed ? colors.border : "transparent",
574
- })}
572
+ paddingVertical: 14,
573
+ }}
575574 >
576
- <Text style={{ fontSize: 18, marginRight: 10 }}>🏠</Text>
575
+ <Text style={{ fontSize: 20, width: 32 }}>🏠</Text>
577576 <View style={{ flex: 1 }}>
578
- <Text style={{ color: colors.text, fontSize: 15, fontWeight: "600" }}>Home</Text>
577
+ <Text style={{ color: colors.text, fontSize: 16, fontWeight: "600" }}>Home</Text>
579578 <Text style={{ color: colors.textMuted, fontSize: 12 }}>~/</Text>
580579 </View>
581580 </Pressable>
....@@ -585,19 +584,18 @@
585584 <Pressable
586585 key={p.slug}
587586 onPress={() => launchSession({ project: p.name })}
588
- style={({ pressed }) => ({
587
+ style={{
589588 flexDirection: "row",
590589 alignItems: "center",
591590 paddingHorizontal: 16,
592
- paddingVertical: 12,
591
+ paddingVertical: 14,
593592 borderTopWidth: 1,
594593 borderTopColor: colors.border,
595
- backgroundColor: pressed ? colors.border : "transparent",
596
- })}
594
+ }}
597595 >
598
- <Text style={{ fontSize: 18, marginRight: 10 }}>📂</Text>
596
+ <Text style={{ fontSize: 20, width: 32 }}>📂</Text>
599597 <View style={{ flex: 1 }}>
600
- <Text style={{ color: colors.text, fontSize: 15, fontWeight: "500" }}>{p.name}</Text>
598
+ <Text style={{ color: colors.text, fontSize: 16, fontWeight: "500" }}>{p.name}</Text>
601599 <Text style={{ color: colors.textMuted, fontSize: 12 }} numberOfLines={1}>
602600 {p.path.replace(/^\/Users\/[^/]+/, "~")}
603601 </Text>
....@@ -612,7 +610,7 @@
612610 borderTopWidth: 1,
613611 borderTopColor: colors.border,
614612 paddingHorizontal: 16,
615
- paddingVertical: 8,
613
+ paddingVertical: 10,
616614 }}>
617615 <TextInput
618616 value={customPath}
....@@ -628,7 +626,7 @@
628626 style={{
629627 flex: 1,
630628 color: colors.text,
631
- fontSize: 14,
629
+ fontSize: 15,
632630 paddingVertical: 6,
633631 }}
634632 />
....@@ -636,14 +634,14 @@
636634 <Pressable
637635 onPress={() => launchSession({ path: customPath.trim() })}
638636 style={{
639
- paddingHorizontal: 12,
640
- paddingVertical: 6,
637
+ paddingHorizontal: 14,
638
+ paddingVertical: 8,
641639 borderRadius: 8,
642640 backgroundColor: colors.accent,
643641 marginLeft: 8,
644642 }}
645643 >
646
- <Text style={{ color: "#FFF", fontSize: 13, fontWeight: "600" }}>Go</Text>
644
+ <Text style={{ color: "#FFF", fontSize: 14, fontWeight: "600" }}>Go</Text>
647645 </Pressable>
648646 )}
649647 </View>