github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/doc/themes/docsy/assets/scss/_alerts.scss (about)

     1  // Style alert boxes.
     2  
     3  .alert {
     4      font-weight: $font-weight-medium;
     5      background: $white;
     6      color: inherit;
     7      border-radius: 0;
     8  
     9      @each $color, $value in $theme-colors {
    10          &-#{$color} {
    11              & .alert-heading {
    12                  color: $value;
    13              }
    14  
    15              border-style: solid;
    16              border-color: $value;
    17              border-width: 0 0 0 4px;
    18          }
    19      }
    20  }