Skip to content

Commit

Permalink
Updated keyword visuals to using CSS variables
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Fey <info@sebastianfey.de>
  • Loading branch information
seyfeb committed Nov 7, 2020
1 parent 65970a5 commit dfc4839
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/RecipeKeyword.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ li {
margin-right: .3em;
margin-bottom: .3em;
padding: 0px .5em;
border: 1px solid #999999;
border: 1px solid var(--color-border-dark);
border-radius: 4px;
}
li:hover {
background-color: #EEEEEE;
background-color: var(--color-background-dark);;
}
</style>

0 comments on commit dfc4839

Please sign in to comment.