// =============================================================================
// _MIXINS.SCSS
// -----------------------------------------------------------------------------
// Site styles.
// =============================================================================

// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
//   01. Thumbnail Style
// =============================================================================

// Thumbnail Style
// =============================================================================

@mixin img_thumbnail() {
  & {
    padding: 4px;
    line-height: $baseLineHeight;
    border: 2px solid $shortcodeBorderColor;
    background-color: $white;
    @include transition(#{border 0.3s ease, box-shadow 0.3s ease});
  }
}