// Hydrogen / Component / Styles

// This reset mixin is used to specify component level style resets if they're needed. These styles only apply to the versioned instance of the component.
@mixin h2-component-pullquote-reset() {}

// This mixin specifies generic styles that apply to all variations/combinations of this component.
@mixin h2-component-pullquote-generic() {
    // Styles
}

// Load your custom mixins here.
@mixin h2-component-pullquote-alignment(
  $alignment
) {
  text-align: $alignment;
}

@mixin h2-component-pullquote-color(
  $color
) {
  color: $color;
  
  * {
    color: $color;
  }

}