-
Notifications
You must be signed in to change notification settings - Fork 1.8k
fix: Public page destortion on different resolution #5501
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
Changes from all commits
1d5ad12
00ee809
a3c8501
bb32254
ac12f5f
7320339
4fa4b87
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,15 @@ | |
min-height: 100%; | ||
object-fit: cover; | ||
} | ||
|
||
.featured-speaker { | ||
height: auto; | ||
overflow: hidden; | ||
width: 100%; | ||
} | ||
|
||
.featured-speaker img { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are you changing the class, it will break every other place this class it used There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. that thumbnail class is also present their. I have added new class for featured -speaker only on public page in speaker-item.
|
||
min-height: 100%; | ||
min-width: 100%; | ||
object-fit: cover; | ||
} |
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.
Create a new class instead of modifying previous one