| .. | .. |
|---|
| 519 | 519 | /> |
|---|
| 520 | 520 | )} |
|---|
| 521 | 521 | |
|---|
| 522 | | - {/* New session FAB */} |
|---|
| 522 | + {/* New session button */} |
|---|
| 523 | 523 | <View style={{ alignItems: "center", paddingVertical: 12 }}> |
|---|
| 524 | 524 | <Pressable |
|---|
| 525 | 525 | onPress={handleNewSession} |
|---|
| 526 | | - style={({ pressed }) => ({ |
|---|
| 526 | + style={{ |
|---|
| 527 | 527 | flexDirection: "row", |
|---|
| 528 | 528 | alignItems: "center", |
|---|
| 529 | | - gap: 8, |
|---|
| 529 | + gap: 6, |
|---|
| 530 | 530 | paddingHorizontal: 20, |
|---|
| 531 | | - paddingVertical: 12, |
|---|
| 531 | + paddingVertical: 10, |
|---|
| 532 | 532 | borderRadius: 24, |
|---|
| 533 | | - backgroundColor: pressed ? colors.accent + "CC" : colors.accent, |
|---|
| 534 | | - })} |
|---|
| 533 | + backgroundColor: colors.accent, |
|---|
| 534 | + }} |
|---|
| 535 | 535 | > |
|---|
| 536 | | - <Text style={{ color: "#FFF", fontSize: 20, fontWeight: "600", marginTop: -1 }}>+</Text> |
|---|
| 536 | + <Text style={{ color: "#FFF", fontSize: 18, fontWeight: "700" }}>+</Text> |
|---|
| 537 | 537 | <Text style={{ color: "#FFF", fontSize: 15, fontWeight: "600" }}>New Session</Text> |
|---|
| 538 | 538 | </Pressable> |
|---|
| 539 | 539 | </View> |
|---|