mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
12.09.2022 fe27dbac37cf3301ac78c0ce6422eda748649447
assets/scss/partials/components/_alert.scss
@@ -1,21 +1,24 @@
.alert {
    padding: 1rem;
    border-style: solid;
    border-color:$alert;
    border-radius: 0.25rem;
    border-width: 2px;
    &__indicator {
        background-color: $alert;
        display: inline-block;
        border-radius: 9999px;
        padding: 0.5rem;
        width: 2.5rem;
        height: 2.5rem;
        text-align: center;
        color: $accent;
        font-weight: 800;
        margin-right: 0.75rem;
      }
  @include themed() {
    border-color: t('alert');
  }
  padding: 1rem;
  border-style: solid;
  border-radius: 0.25rem;
  border-width: 2px;
  &__indicator {
    @include themed() {
      color: t('accent');
      background-color: t('alert');
    }
    display: inline-block;
    border-radius: 9999px;
    padding: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    font-weight: 800;
    margin-right: 0.75rem;
  }
}