mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
31 lines
551 B
SCSS
31 lines
551 B
SCSS
|
|
// Badge
|
|
// --------------------------------------------------
|
|
|
|
$badge-font-size: 1.3rem !default;
|
|
$badge-font-weight: bold !default;
|
|
$badge-border-radius: 10px !default;
|
|
|
|
|
|
item-badge {
|
|
display: inline-block;
|
|
|
|
padding: 3px 8px;
|
|
min-width: 10px;
|
|
border-radius: $badge-border-radius;
|
|
|
|
vertical-align: baseline;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
|
|
font-size: $badge-font-size;
|
|
font-weight: $badge-font-weight;
|
|
line-height: 1;
|
|
|
|
background: #ccc;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|