-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Fixes the logo height #11384
Fixes the logo height #11384
Conversation
core/css/header.scss
Outdated
@@ -113,7 +113,7 @@ | |||
background-size: contain; | |||
background-position: center; | |||
width: 62px; | |||
height: 100%; | |||
height: calc(100% - 2px); |
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'm cinfused, where does those 2px come from? 🤔 😁
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.
@skjnldsv it has top: 1px;
. When there should be the same at the bottom a height of 100 % minus two pixels would to that.
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.
Shouldn't we set a top at 0?
I remember something about this, but I can't recall 😁
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.
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.
ha ha :) I tried it without the tiny spacing. In my opinion it looks better like this...
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.
you could add a bottom: 1px? so we understand better?
I'm fine with that, but i'm afraid we'll forget about this like I did 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.
@skjnldsv done ✓
f948916
to
46bd4c4
Compare
I tested it also. 👍 |
@go2sh you should be able to add your review on the top right ;) |
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.
Tested and works. :)
Signed-off-by: Michael Weimann <[email protected]>
46bd4c4
to
c7714b4
Compare
@weeman1337 Once the backport PR is open you could remove the |
before
after
Closes #11372