@import '../themes.scss';

.widget {
  padding: 1rem;
  box-sizing: border-box;
  border: 1px solid #eee;
  flex: 1 1 auto;
  min-width: 200px;
  background-color: #fff;
  @include themify($themes) {
    color: themed('textColor');
    background-color: themed('backgroundColor');
    border: themed('borderBottom');
  }
  .label {
    color: #9e9e9e;
    font-size: 0.75rem;
    text-transform: uppercase;
  }
  .value {
    font-size: 1.25rem;
    font-weight: 700;
  }
}
