I am building a widgetized dashboard in which I am rendering widgets like widget-logs, widget-chart & widget-list etc.
I want to apply common styling to widgets like given below which doesn't work but would like to know is something else I can use for my use case:-
widget-* {
header { font-weight: bold; }
}
instead of:-
widget-logs,
widget-chart,
widget-list {
header { font-weight: bold; }
}