Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
fix malformed CSS that was breaking production builds
Browse files Browse the repository at this point in the history
no issue
- cssnano was erroring with `Error: Unexpected "space" found`
  • Loading branch information
kevinansfield committed Mar 2, 2017
1 parent ec3cf91 commit 78dce69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/styles/addons/gh-koenig/gh-koenig.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
display: none;
}

.__mobiledoc-card: hover .card-handle {
.__mobiledoc-card:hover .card-handle {
display: block;
}

Expand All @@ -80,7 +80,7 @@
resize: none;
}

.card-handle button: hover {
.card-handle button:hover {
background-color: #718087;
color: #fff;
}
Expand Down Expand Up @@ -135,7 +135,7 @@ textarea.ed_code {
.__mobiledoc-tooltip a {
color: #FFF;
}
.__mobiledoc-tooltip: before {
.__mobiledoc-tooltip:before {
content: '';
position: absolute;

Expand Down

0 comments on commit 78dce69

Please sign in to comment.