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

fix: homepage logo width #8338

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ietf/static/css/ietf.scss
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,13 @@ th,

// Helper to constrain the size of the main logo
.ietflogo {
width: 75%;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@larseggert Where did this .75 originally come from?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No idea. But that used to look correct with the old CSS. 🤷

width: 100%;
max-width: 300px;
NGPixel marked this conversation as resolved.
Show resolved Hide resolved
}
.ietflogo > img {
min-width: 100px;
width: 100%;
}

// Make revision numbers pagination items fixed-width
.revision-list {
Expand Down
Loading