Issues (576)

src/styles/mixins.scss (1 issue)

Severity
1
// css-tricks.com/snippets/css/fluid-typography/
2
@mixin fluid($property, $min, $max) {
3
  #{$property}: calc(
4
    #{$min}px + (#{$max} - #{$min}) * ((100vw - 320px) / (1200 - 320))
5
  );
6
  
0 ignored issues
show
Line contains trailing whitespace
Loading history...
7
  @media (min-width: 1200px) {
8
    #{$property}: #{$max}px;
9
  }
10
}
11
12
// mobile-first media-query mixin
13
@mixin media($viewport) {
14
  @media (min-width: #{$viewport}px) {
15
    @content;
16
  }
17
}
18