You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
190 B

  1. @each $color, $value in $theme-colors {
  2. .text-#{$color} {
  3. color:$value;
  4. }
  5. }
  6. .alert {
  7. padding: 5px 7px;
  8. &.alert-danger {
  9. border: 1px solid #e32815;
  10. color: #e32815;
  11. }
  12. }