-
Notifications
You must be signed in to change notification settings - Fork 4
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
[SD-551]AV-heading-not-visible #562
[SD-551]AV-heading-not-visible #562
Conversation
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.
@yeniatencio small change, please look into the comment
@@ -33,6 +33,7 @@ | |||
box-shadow: none !important; | |||
border: none !important; | |||
padding: 0 0 0.5em; | |||
text-wrap: auto; |
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.
@yeniatencio auto does not actually count as a valid value anymore and it is not a global value as well. In this case you should use a valid value for text-wrap it self. In this case use text-wrap: wrap; or text-wrap: balance; or text-wrap: pretty; or text-wrap: stable;
/* Keyword values */
text-wrap: wrap;
text-wrap: nowrap;
text-wrap: balance;
text-wrap: pretty;
text-wrap: stable;
/* Global values */
text-wrap: inherit;
text-wrap: initial;
text-wrap: revert;
text-wrap: revert-layer;
text-wrap: unset;
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.
Thank you @MdNadimHossain . I have updated my PR.
Jira
https://digital-vic.atlassian.net/browse/SD-551
BE link: https://nginx-php.pr-1756.content-vic.sdp4.sdp.vic.gov.au/
Problem/Motivation
Heading for AV is not fully visible:
Fix
Fixed styling by adding text-wrap property.
Related PRs
Screenshots
TODO