Skip to content

Commit

Permalink
feat: add css module
Browse files Browse the repository at this point in the history
  • Loading branch information
awran5 committed Oct 3, 2022
1 parent cc5b318 commit ad2bca7
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/style.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
body,
html {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji,
Segoe UI Emoji;
}

.starRatingWrap {
display: inline-block;
touch-action: none;
}

.simpleStarRating {
position: relative;
display: inline-block;
overflow: hidden;
white-space: nowrap;
vertical-align: middle;
user-select: none;
touch-action: none;
}

.fillIcons {
position: absolute;
top: 0;
overflow: hidden;
display: inline-block;
white-space: nowrap;
}

.emptyIcons {
display: inline-block;
}

.tooltip {
display: inline-block;
padding: 5px 15px;
background-color: #333;
color: #fff;
vertical-align: middle;
border-radius: 5px;
}

0 comments on commit ad2bca7

Please sign in to comment.