Skip to content

Commit

Permalink
Fixing <mark> padding
Browse files Browse the repository at this point in the history
For some reason, the mark CSS doesn't take effect in the component-specific
CSS. Moving it back to globals.

Fixes #128.
  • Loading branch information
mtlynch committed Dec 9, 2017
1 parent b7f49a3 commit 908bbc8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/app/_components/recipe-list/recipe-list.component.css
Expand Up @@ -40,10 +40,3 @@ button.recipe-categories {
.recipe {
margin-bottom: 10px;
}

mark {
display: inline;
margin: 0;
padding: 0;
font-weight: 600;
}
7 changes: 7 additions & 0 deletions src/styles/_global.scss
Expand Up @@ -44,3 +44,10 @@ a:link, a:active, a:visited {
cursor: pointer;
color: inherit;
}

mark {
display: inline;
margin: 0px !important;
padding: 0px !important;
font-weight: 600;
}

0 comments on commit 908bbc8

Please sign in to comment.