@import '../index';


.status > div
  border-radius: .5em
  color:  $app['palette']['bg-primary']
  display: inline-block
  padding: 0.1em .5em

//.status .off
//  background-color: #f39c12;
//
//.status .draft
//  background-color: #f39c12;
//
//.status .live
//  background-color: #51A351;
//
//.status .expired
//  background-color: #BD362F;
//
//.status .published
//  background-color: #51A351;
//
//.status .scheduled
//  background-color: #00acd6;

.status .off
  background-color: $app['status']['off']

.status .draft
  background-color: $app['status']['draft']

.status .live
  background-color: $app['status']['live']

.status .expired
  background-color: $app['status']['expired']

.status .published
  background-color: $app['status']['published']

.status .scheduled
  background-color: $app['status']['scheduled']


