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

Remove Refactoring notes from feature/cleanup and address PR comments #566

Merged
merged 6 commits into from Jun 15, 2020
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

Prev

Fix bug where upgrade banner overlaps tracker wheel

  • Loading branch information
IAmThePan committed Jun 13, 2020
commit 0c9b906c8ecfdc97e1a857171b99171529b57928

This file was deleted.

@@ -13,13 +13,21 @@

.UpgradeBanner {
@extend %pointer;
background: url("../../app/images/panel/green-upgrade-banner.svg");
background-size: contain;
background-repeat: repeat-x;
}

.UpgradeBanner--normal {
height: 50px;
height: 25px;
background: linear-gradient(#9ECC42, #429321);
&::before {
content: '';
position: absolute;
right: 0;
height: 0;
width: 0;
border-top: 12.5px solid transparent;
border-bottom: 12.5px solid transparent;
border-right: 10px solid white;
}

.UpgradeBanner__text {
font-size: 12px;
@@ -33,7 +41,18 @@
}

.UpgradeBanner--small {
height: 50px;
height: 20px;
background: linear-gradient(#9ECC42, #429321);
&::before {
content: '';
position: absolute;
right: 0;
height: 0;
width: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 8px solid white;
}

.UpgradeBanner__text {
font-size: 10px;
@@ -43,6 +62,7 @@

.UpgradeBanner__plus {
vertical-align: middle;
padding-right: 12px;
}
}

@@ -55,5 +75,5 @@

.UpgradeBanner__plus {
display: inline-block;
padding-right: 18px;
padding-right: 15px;
}
ProTip! Use n and p to navigate between commits in a pull request.