mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
30 lines
631 B
SCSS
30 lines
631 B
SCSS
|
|
|
|
$baseFontSize: 14px !default;
|
|
|
|
$fontSizeLarge: ceil($baseFontSize * 1.25);
|
|
|
|
$baseLineHeight: 1.428571429; // 20/14
|
|
$baseLineHeightComputed: floor($baseFontSize * $baseLineHeight); // ~20px
|
|
|
|
// Content stuff
|
|
$contentPadding: 10px;
|
|
|
|
// Bar stuff
|
|
$barHeight: 44px !default;
|
|
$barLineHeight: 44px !default;
|
|
$barTitleFontSize: $fontSizeLarge;
|
|
$barTitleLineHeightComputed: 26px;//$barHeight - 2;
|
|
$barPaddingVertical: (($barHeight - $baseLineHeightComputed) / 2);
|
|
$barPaddingPortrait: 8px;
|
|
$barPaddingLandscape : 5px;
|
|
|
|
|
|
|
|
// Lists
|
|
$listItemBorder: 1px solid #ddd;
|
|
|
|
|
|
// Panels
|
|
$panelOpenWidth: 270px;
|
|
$panelAnimationSpeed: 200ms; |