Sha256: 16bc79e0260fb12b3d6253d620bd0d05d692ce154a46aa7a5e1385cfea3212eb

Contents?: true

Size: 691 Bytes

Versions: 1

Compression:

Stored size: 691 Bytes

Contents

// Toasts
.toast {
  border: $border-width solid $dark-color;
  border-radius: $border-radius;
  color: $light-color;
  display: block;
  padding: $layout-spacing;
  @include toast-variant($dark-color);
  width: 100%;

  &.toast-primary {
    @include toast-variant($primary-color);
  }

  &.toast-success {
    @include toast-variant($success-color);
  }

  &.toast-warning {
    @include toast-variant($warning-color);
  }

  &.toast-error {
    @include toast-variant($error-color);
  }

  a {
    color: $light-color;
    text-decoration: underline;
    &:focus,
    &:hover,
    &:active,
    &.active {
      opacity: .75;
    }
  }

  .btn-clear {
    margin: 2px -2px 2px 4px;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spectre_scss-0.3.2.0 vendor/assets/stylesheets/spectre/src/_toasts.scss