view publishable/resources/sass/badges.scss @ 7:e6132a1e8e24 default tip

Adding better support for test among other base changes.
author Luka Sitas <sitas.luka.97@gmail.com>
date Thu, 25 Sep 2025 19:58:32 -0400
parents 84c75d9d90be
children
line wrap: on
line source

.badge{
  &.yellow {
      background-color: $yellow-100;
      color: $yellow-700;
  }

  &.orange {
      background-color: $orange-100;
      color: $orange-700;
  }
  &.green {
      background-color: $green-100;
      color: $green-700;
  }
  
  &.blue {
      background-color: $blue-100;
      color: $blue-700;
  }

  &.gray {
      background-color: $gray-200;
      color: $gray-700;
  }

  &.red {
      background-color: $red-100;
      color: $red-700;
  }
}