Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

logo 'beta' tag css fix #515

Merged
merged 2 commits into from
Nov 9, 2015
Merged
Changes from 1 commit
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
19 changes: 11 additions & 8 deletions assets/css/layout/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,18 @@
}

.logo-link:after {
content: '';
background: url('/images/badge-beta.svg');
background-size: contain;
background-repeat: no-repeat;
display: block;
width: 37px;
height: 17px;
margin-top: 23px;
margin-left: 155px;
height: 18px;
margin-top: 21px;
margin-left: 160px;
border-radius: 0;
Copy link
Contributor

Choose a reason for hiding this comment

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

I think we can delete this line since border-radius: 15px is right below on line 89

content: 'beta';
Copy link
Contributor

Choose a reason for hiding this comment

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

I usually prefer content to be the first line, since it's a somewhat non-CSS like property, but that's just my preference!

background-color: $gray-lighter;
padding: 0 1px;
border-radius: 15px;
font-size: 10px;
display: inline-block;
line-height: 19px;
}
}

Expand Down