All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.bower_components.vertical-timeline-jwebswing.partials._layout.scss Maven / Gradle / Ivy

The newest version!
// breakpoints

$S: 320px;
$M: 768px;
$L: 1170px;

// media queries

@mixin MQ($canvas) {
  @if $canvas == S {
    @media only screen and (min-width: $S) {
      @content;
    }
  } @else if $canvas == M {
    @media only screen and (min-width: $M) {
      @content;
    }
  } @else if $canvas == L {
    @media only screen and (min-width: $L) {
      @content;
    }
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy