-
Notifications
You must be signed in to change notification settings - Fork 3
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
Feature/1227 Fontsize and weight #1239
Conversation
ManuelMoeri
commented
Dec 9, 2024
- Implement correct fontsize and weight across the whole tool.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good except for the bug in the "Check-In History" dialog.
frontend/src/app/components/check-in-history-dialog/check-in-history-dialog.component.html
Show resolved
Hide resolved
aa15483
to
a5b2cd1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
UI looks good to me, the dialog scales correctly again and I could not see anything else that seemed out of order. I spotted this in the styles.scss
file though:
a {
font-family: Roboto, "sans-serif";
font-variation-settings: "wght" 400;
color: $pz-dark-blue;
text-decoration: none;
font-size: 0.875rem;
font-weight: 700;
}
Should both font-weight
and font-variation-settings
be present here? Does not one override the other one?
After that I think we are ready to merge