initial commit
This commit is contained in:
commit
e869a1cab4
107 changed files with 9029 additions and 0 deletions
18
app/assets/less/components/badge.less
Normal file
18
app/assets/less/components/badge.less
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
|
||||
.badge {
|
||||
display: inline-block;
|
||||
padding: .2em .4em;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
border-radius: 2px;
|
||||
vertical-align: baseline;
|
||||
|
||||
&:empty {
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
|
||||
.badge-primary {
|
||||
color: white;
|
||||
background-color: @brand-color;
|
||||
}
|
||||
Reference in a new issue