1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-23 23:29:42 +02:00
documize/gui/app/styles/widget/widget-chip.scss

22 lines
457 B
SCSS
Raw Normal View History

2016-07-07 18:54:16 -07:00
.chip {
display: inline-block;
border-radius: 3px;
padding: 0;
height: 25px;
line-height: 0;
2017-03-07 16:10:13 +00:00
margin: 0 5px 10px 0;
2017-09-25 14:37:11 +01:00
border: 1px solid $color-gray;
background-color: $color-gray;
color: $color-white;
2016-07-07 18:54:16 -07:00
> .chip-text {
display: inline-block;
font-weight: 400;
2017-09-22 17:23:14 +01:00
font-size: 1rem;
2017-09-25 14:37:11 +01:00
color: $color-white;
2016-07-07 18:54:16 -07:00
padding: 11px 10px 0 10px;
letter-spacing: 0.7px;
line-height: 0;
}
}