feat: increase keyboard font size for classic theme (#897)

## Summary

* **What is the goal of this PR?** (e.g., Implements the new feature for
file uploading.)

Adresses Feature Request #896 

* **What changes are included?**

Changed key dimensions, initial positions and margins.

## Additional Context

The keyboard now looks like this:

![image](https://github.com/user-attachments/assets/e2b8f3fe-e54a-4a44-9a29-2ef9f2c8dffb)

---

### AI Usage

While CrossPoint doesn't have restrictions on AI tools in contributing,
please be transparent about their usage as it
helps set the right context for reviewers.

Did you use AI tools to help write this code? _**NO**_
This commit is contained in:
ariel-lindemann
2026-02-19 13:51:33 +01:00
committed by GitHub
parent 840e8c38f1
commit eb241ab3fc

View File

@@ -90,9 +90,9 @@ constexpr ThemeMetrics values = {.batteryWidth = 15,
.sideButtonHintsWidth = 30, .sideButtonHintsWidth = 30,
.progressBarHeight = 16, .progressBarHeight = 16,
.bookProgressBarHeight = 4, .bookProgressBarHeight = 4,
.keyboardKeyWidth = 18, .keyboardKeyWidth = 22,
.keyboardKeyHeight = 18, .keyboardKeyHeight = 30,
.keyboardKeySpacing = 3, .keyboardKeySpacing = 10,
.keyboardBottomAligned = false, .keyboardBottomAligned = false,
.keyboardCenteredText = false}; .keyboardCenteredText = false};
} }