feat: update indicator text weight for shortcut widget

This commit is contained in:
Shivam Mishra 2020-07-01 17:10:55 +05:30
parent 05039c57b2
commit b349c0aa70
2 changed files with 5 additions and 1 deletions

View file

@ -80,7 +80,7 @@ export default class ShortcutWidget extends Widget {
? this.color.toLowerCase()
: 'grey';
const buttons = $(`<div class="small indicator-pill ${color}">${label}</div>`);
const buttons = $(`<div class="indicator-pill ${color}">${label}</div>`);
buttons.appendTo(this.action_area);
}
}

View file

@ -370,6 +370,10 @@ $panel-bg: $gray-50;
margin-top: 5px;
margin-bottom: 5px;
}
.indicator-pill {
font-weight: 500;
}
}
&.links-widget-box {