lisiur / ChatWizard

OpenAI chat client desktop app (Windows, MacOS, Linux)
MIT License
150 stars 11 forks source link

[Feature]: Increase font size in chats #66

Closed undefiened closed 10 months ago

undefiened commented 11 months ago

Is your feature request related to a problem? Please describe.

Font size is too small on a high-DPI screen in Ubuntu. Or, in general, it is good to have an opportunity to increase font size compared to the default, e.g., if you have bad vision.

Describe the solution you'd like

A shortcut or a setting to increase the font size

Describe alternatives you've considered

It looks like there is an upstream issue with tauri that it doesn't support zoom feature - https://github.com/tauri-apps/tauri/issues/3310

If the server version is enabled, then I can open the app in a browser, and I can zoom there. However, zoom scales interface disproportionally more compared to the chat text (the interface starts taking too much space even though fonts are still small).

So, I feel like the best option would be to have a setting for font size in chats.

I tried searching by "font" or "size", but I can't find any quick way to change the font size in the code.

Additional context

-

undefiened commented 11 months ago

As a workaround, a custom CSS style can be used in browsers (for example, using the "Stylus" extension in Firefox)

.grid.gap-4.pb-6 div {
    font-size: 24px;
}
lisiur commented 10 months ago

CleanShot 2023-11-13 at 11 12 46

undefiened commented 10 months ago

Looks great, thank you very much!