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

Alexander Bilz
26.12.2022 e581c4372d39c1f3fafeac06839d2425a4374fbd
assets/scss/partials/components/_notice.scss
@@ -3,24 +3,24 @@
  flex-direction: column;
  @include themed() {
    background-color: t('notice-info');
    background-color: mix(t('info'), t('accent'), 40%);
  }
  &--update {
    @include themed() {
      background-color: t('notice-update');
      background-color: mix(t('success'), t('accent'), 40%);
    }
  }
  &--warning {
    @include themed() {
      background-color: t('notice-warning');
      background-color: mix(t('danger'), t('accent'), 40%);
    }
  }
  &__title {
    background-color: rgb(96, 134, 180);
    background-color: t('info');
    align-self: flex-end;
    font-weight: 300;
    letter-spacing: 0.025em;
@@ -31,10 +31,10 @@
    }
    &--update {
      background-color: rgb(81, 216, 138);
      background-color: t('success');
    }
    &--warning {
      background-color: rgb(239, 87, 83);
      background-color: t('danger');
    }
  }