Skip to content

Commit

Permalink
feat(mocks-overview): add badge colors (#10)
Browse files Browse the repository at this point in the history
When using a method that has no badge color defined, the badge will be invisible (white on white).

*added default grey color for undefined methods
*added a seagreen color for patch method
  • Loading branch information
Pineapples committed Aug 27, 2020
1 parent b0cbf1a commit 9342310
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/mocks/overview/overview-row.component.scss
Expand Up @@ -34,6 +34,7 @@
color: white;
padding-top: 5px;
margin-top: 2px;
background: #b1aeae;

&-delete {
background: crimson;
Expand All @@ -50,6 +51,10 @@
&-put {
background: seagreen;
}

&-patch {
background: seagreen;
}
}
}
}

0 comments on commit 9342310

Please sign in to comment.