Skip to content

Commit

Permalink
CSS Module for tag-suggest
Browse files Browse the repository at this point in the history
  • Loading branch information
drags committed Dec 5, 2019
1 parent 215a5ee commit 36ec1d8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/tag-suggest.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.container {
background-color: #fff;
margin: 0 5px;
}

.container input {
background-color: #ddd;
border-radius: 4px;
padding: 1px 5px;
border: 0;
height: 2em;
}

.containerOpen {
border: 2px solid #333;
background-color: #fff;
z-index: 2;
}

.suggestionsList {
list-style-type: none;
padding: 0;
margin: 0;
}

.suggestion {
padding: 5px 5px;
}

.suggestionHighlighted {
background-color: #ccc;
}

0 comments on commit 36ec1d8

Please sign in to comment.