Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the font bigger on the buttons #595

Open
momisageek opened this issue Jun 9, 2019 · 1 comment
Open

Make the font bigger on the buttons #595

momisageek opened this issue Jun 9, 2019 · 1 comment

Comments

@momisageek
Copy link

I'm always frustrated when I see the buttons with tiny font on them. This makes anyone who has vision typical of anyone over 40 struggle to read them. There is plenty of space on the button to increase the font and icon size. I would like to control the size of font on the buttons, the color, and the icon size. I work on web apps for handicapped and elderly adults, and these buttons do not pass readability standards.

Describe the solution you'd like
Have easy access to the CSS styling for the firebaseui-web. Or make the default size bigger. Or give a choice for larger buttons in the options.

Describe alternatives you've considered
On a mobile phone the user can zoom. That is also difficult for people with less dexterity.

@Luke-Markham
Copy link

.firebaseui-idp-button,
.mdl-button,
.mdl-js-button,
.mdl-button--raised,
.firebaseui-idp-google,
.firebaseui-id-idp-button {
max-width: unset !important;
min-width: unset !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}

.firebaseui-container {
max-width: 90% !important;
}
@media screen and (min-width: 768px) {
.firebaseui-container {
max-width: 60% !important;
}
}

@media screen and (min-width: 1240px) {
.firebaseui-container {
max-width: 50% !important;
}
}

.firebaseui-idp-text,
.firebaseui-idp-text-long,
.firebaseui-idp-text-short {
font-size: 3vmin !important;
font-family: var(--sec-font);
}

.firebaseui-idp-icon {
height: 3vmin !important;
width: 3vmin !important;
}

.firebaseui-tos,
.firebaseui-tospp-full-message {
font-size: 1.5vmin !important;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants