Skip to content

1.5.0

Compare
Choose a tag to compare
@black7375 black7375 released this 23 Oct 11:27
· 21 commits to master since this release

Icon replace
Icon1
Icon2
Icon3

Options

  • mode: vw-only, Displayed using only vw units.

Break Points Full Review

$phone-width:  480px !default;
$phone-height: 854px !default;

$tablet-width:   768px !default;
$tablet-height: 1024px !default;

$laptop-width:  1280px !default;
$laptop-height:  720px !default;

$desktop-width:  1920px !default;
$desktop-height: 1080px !default;

$high-desktop-width:  2560px !default;
$high-desktop-height: 1440px !default;

to

$phone-width:       360px !default;
$phone-height:      640px !default;
$high-phone-width:  414px !default;
$high-phone-height: 896px !default;

$tablet-width:        768px !default;
$tablet-height:      1024px !default;
$high-tablet-width:  1024px !default;
$high-tablet-height: 1366px !default;

$laptop-width:      1280px !default;
$laptop-height:      720px !default;
$high-laptop-width: 1600px !default;
$high-laptop-height: 900px !default;

$desktop-width:       1920px !default;
$desktop-height:      1080px !default;
$high-desktop-width:  3840px !default;
$high-desktop-height: 2160px !default;

Miscellaneous

  • body-width-fix: Account for difference between 100vw and 100% when scroll bars are included on page.
  • safari-iframe-resize-fix: Safari doesn't resize its values in an iframe if the iframe is resized.

Bug fix

  • List Input: %, number is passed

Others

  • More readable doc
  • Refactoring code && Add comments