1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Mobile: Resolves #9260: Fade settings screen icons (#9268)

This commit is contained in:
Henry Heino 2023-11-11 09:08:58 -08:00 committed by GitHub
parent b3591808b7
commit 39803f53a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,11 +86,12 @@ const configScreenStyles = (themeId: number): ConfigScreenStyles => {
fontSize: theme.fontSize,
};
const fadedOpacity = 0.75;
const sidebarButtonDescriptionText: TextStyle = {
...sidebarButtonMainText,
fontSize: theme.fontSizeSmaller,
color: theme.color,
opacity: 0.75,
opacity: fadedOpacity,
};
@ -185,6 +186,7 @@ const configScreenStyles = (themeId: number): ConfigScreenStyles => {
textAlign: 'center',
fontSize: 18,
width: sidebarButtonHeight * 0.8,
opacity: fadedOpacity,
},
sidebarSelectedButtonText: {
...sidebarButtonMainText,