-
Notifications
You must be signed in to change notification settings - Fork 306
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
BUG: Fixing width on Topic Collection Pages #7442
Conversation
@@ -51,13 +51,6 @@ <h2 class="card-event__title" id="{{ .Title | urlize }}"> | |||
</div> | |||
{{- end -}} | |||
|
|||
{{- if .Params.host -}} |
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.
after reviewing the file this code was getting a display none and looked to not being used at all.
@@ -242,10 +243,6 @@ | |||
} | |||
} | |||
|
|||
.card-event__host { |
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.
removing due too display none and took out code above
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.
LGTM, nice find on the host display.
Added an additional note as to why this is happening and requested a small change. Looks like branch is outdated too.
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.
I tested the 3 topic pages links, looks good!
Summary
Adding a width of 100% to fix issue with cards not going full width.
Preview
Link to Preview
Solution
Adding
width: 100%;
to address the error that was according when text was below a certain amount. This was causing the width to be dependent on the about the text that was present on the card.How To Test
DG BUG: width & alignment in topic collection pages
for more context)Dev Checklist