Sha256: 4a2aeee3e53eaeeefbba39cf0abb960173b818f0111aa5deca330dec109abda6

Contents?: true

Size: 709 Bytes

Versions: 1

Compression:

Stored size: 709 Bytes

Contents

// Type
.note {
  --#{$prefix}note-padding: #{$note-padding};
  --#{$prefix}note-border-width: #{$note-border-width};
  --#{$prefix}note-border-radius: #{$note-border-radius};
  --#{$prefix}note-strong-font-weight: #{$note-strong-font-weight};

  padding: var(--#{$prefix}note-padding);
  border-left: var(--#{$prefix}note-border-width) solid;
  border-radius: var(--#{$prefix}note-border-radius);
  strong {
    font-weight: var(--#{$prefix}note-strong-font-weight);
  }
}

@each $color, $value in $note {
  .note-#{$color} {
    background-color: map-get($value, background-color);
    border-color: map-get($value, border-color);
  }
}

.w-responsive {
  @media (min-width: 1199px) {
    width: 75%;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-rubin-collab-theme-0.1.1 _third_party/mdb-ui-kit/src/scss/free/_type.scss