Skip to content

Commit

Permalink
Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
joemcgill committed Nov 7, 2024
1 parent 64eaab6 commit b0c712e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion js/src/components/free-ad-credit/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

svg {
flex: 0 0 auto;
fill: #007017;
fill: $gla-color-green;
}

&__title {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import AppDocumentationLink from '.~/components/app-documentation-link';
const FreeAdCredit = () => {
return (

Check warning on line 20 in js/src/dashboard/summary-section/paid-features/free-ad-credit.js

View check run for this annotation

Codecov / codecov/patch

js/src/dashboard/summary-section/paid-features/free-ad-credit.js#L20

Added line #L20 was not covered by tests
<div className="gla-free-ad-credit-claim">
<GridiconGift />
<GridiconGift size={ 16 } />
<div>
{ createInterpolateElement(
__(
Expand Down
9 changes: 6 additions & 3 deletions js/src/dashboard/summary-section/paid-features/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,24 @@
text-align: left;

.gridicon {
fill: #5ec862;
fill: $gla-color-green;
flex: 0 0 auto;
}
}

.gla-free-ad-credit-claim {
text-align: left;
background-color: $white;
display: flex;
align-items: center;
gap: calc(var(--main-gap) / 3 * 2);
align-items: flex-start;
gap: $grid-unit;
padding: $grid-unit-20 $grid-unit-15;
color: $gray-900;

.gridicon {
fill: $gla-color-green;
margin: $grid-unit-10 / 2;
flex: 0 0 auto;
}
}

Expand Down

0 comments on commit b0c712e

Please sign in to comment.