fix(UI): Improve text rendering in account navigation.

This commit is contained in:
Philipp Kunz 2024-10-12 23:41:23 +02:00
parent 0d613fd634
commit 944f689165
4 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# Changelog # Changelog
## 2024-10-12 - 1.4.2 - fix(UI)
Improve text rendering in account navigation.
- Fix for text alignment in the commit info section of the account navigation.
- Adjusted font settings for better readability.
## 2024-10-07 - 1.4.1 - fix(core) ## 2024-10-07 - 1.4.1 - fix(core)
Bug fixes and UI enhancements Bug fixes and UI enhancements

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@idp.global/idp.global', name: '@idp.global/idp.global',
version: '1.4.1', version: '1.4.2',
description: 'An identity provider software managing user authentications, registrations, and sessions.' description: 'An identity provider software managing user authentications, registrations, and sessions.'
} }

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@idp.global/idp.global', name: '@idp.global/idp.global',
version: '1.4.1', version: '1.4.2',
description: 'An identity provider software managing user authentications, registrations, and sessions.' description: 'An identity provider software managing user authentications, registrations, and sessions.'
} }

View File

@ -85,6 +85,7 @@ export class LeleAccountNavigation extends DeesElement {
position: absolute; position: absolute;
bottom: 0px; bottom: 0px;
left: 0px; left: 0px;
font-family: 'Intel One Mono';
width: 100%; width: 100%;
font-size: 12px; font-size: 12px;
padding: 8px; padding: 8px;
@ -114,6 +115,7 @@ export class LeleAccountNavigation extends DeesElement {
padding: 8px; padding: 8px;
padding-left: 10px; padding-left: 10px;
margin-bottom: 5px; margin-bottom: 5px;
font-size: 14px;
} }
.navigationOption:hover { .navigationOption:hover {