Sha256: c33b76cadbb3cb39137e32caa606c8b18de2ee35e6464eeaaa0585fda01fbc16

Contents?: true

Size: 645 Bytes

Versions: 1

Compression:

Stored size: 645 Bytes

Contents

@function get-resolution-factor($resolution) {
  $default-resolution: 320;
  $factor: $resolution / $default-resolution;

  @return $factor;
}


@media screen and (min-width: 640px) and (max-width: 767px) {
  $factor: get-resolution-factor(640) !global;

  @import "./_base";
}



@media screen and (min-width: 0px) and (max-width: 639px) {
  $factor: get-resolution-factor(320) !global;

  @import "./_base";
}


@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .button.action-copy {
    display: none;
  }
}
@media only screen and (max-device-width: 480px) {
  .button.action-copy {
    display: none;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
translation_cms-0.1.5 app/assets/stylesheets/cabinet/mobile/_main.scss