0

I need to changes values of few variable under media quires. Right not its not working. Is it possible?

$origami-width:             565px;
$origami-height:            332px;
    @media (max-width: $screen-sm-max){
    $origami-width:             370px;
    $origami-height:            300px;
}
cimmanon
  • 67,211
  • 17
  • 165
  • 171
Monkviper
  • 1,477
  • 2
  • 11
  • 15

1 Answers1

0

I have made it working like this. Thanks!

 @media (min-width: $screen-md){
    $origami-width:             565px;
    $origami-height:            332px;

    .origami-container {
        width: $origami-width * 2;
    }
    .origami {
        @include size($origami-width, $origami-height);

        .content {
            height: $origami-height;
        }
    }
 }

 @media (max-width: $screen-sm-max){
    $origami-width:             370px;
    $origami-height:            300px;

    .origami-container {
        width: $origami-width * 2;
    }
    .origami {
        @include size($origami-width, $origami-height);

        .content {
            height: $origami-height;
        }
    }
}
Monkviper
  • 1,477
  • 2
  • 11
  • 15