Matthias Nott
2026-03-07 2016168317f19c3ede82545f617a7f1f825173d9
components/SessionDrawer.tsx
....@@ -519,21 +519,21 @@
519519 />
520520 )}
521521
522
- {/* New session FAB */}
522
+ {/* New session button */}
523523 <View style={{ alignItems: "center", paddingVertical: 12 }}>
524524 <Pressable
525525 onPress={handleNewSession}
526
- style={({ pressed }) => ({
526
+ style={{
527527 flexDirection: "row",
528528 alignItems: "center",
529
- gap: 8,
529
+ gap: 6,
530530 paddingHorizontal: 20,
531
- paddingVertical: 12,
531
+ paddingVertical: 10,
532532 borderRadius: 24,
533
- backgroundColor: pressed ? colors.accent + "CC" : colors.accent,
534
- })}
533
+ backgroundColor: colors.accent,
534
+ }}
535535 >
536
- <Text style={{ color: "#FFF", fontSize: 20, fontWeight: "600", marginTop: -1 }}>+</Text>
536
+ <Text style={{ color: "#FFF", fontSize: 18, fontWeight: "700" }}>+</Text>
537537 <Text style={{ color: "#FFF", fontSize: 15, fontWeight: "600" }}>New Session</Text>
538538 </Pressable>
539539 </View>