docs(sass): document some missed sass variables

This commit is contained in:
Brandy Carney
2017-01-26 11:37:31 -05:00
parent 1d9270b6dd
commit b02df3e2d1
6 changed files with 35 additions and 0 deletions

View File

@ -3,7 +3,10 @@
// Action Sheet
// --------------------------------------------------
/// @prop - Width of the action sheet
$action-sheet-width: 100% !default;
/// @prop - Maximum width of the action sheet
$action-sheet-max-width: 500px !default;

View File

@ -3,10 +3,16 @@
// Alerts
// --------------------------------------------------
/// @prop - Minimum width of the alert
$alert-min-width: 250px !default;
/// @prop - Maximum height of the alert
$alert-max-height: 90% !default;
/// @prop - Line height of the alert button
$alert-button-line-height: 20px !default;
/// @prop - Font size of the alert button
$alert-button-font-size: 14px !default;

View File

@ -3,6 +3,7 @@
// Backdrop
// --------------------------------------------------
/// @prop - Color of the backdrop
$backdrop-color: #000 !default;
ion-backdrop {

View File

@ -3,8 +3,14 @@
// Infinite Scroll
// --------------------------------------------------
/// @prop - Margin of the infinite scroll loading icon
$infinite-scroll-loading-margin: 0 0 32px 0 !default;
/// @prop - Color of the infinite scroll loading indicator
$infinite-scroll-loading-color: #666 !default;
/// @prop - Margin of the infinite scroll loading text
$infinite-scroll-loading-text-margin: 4px 32px 0 32px !default;

View File

@ -3,7 +3,10 @@
// Menu
// --------------------------------------------------
/// @prop - Width of the menu
$menu-width: 304px !default;
/// @prop - Width of the menu on small devices (under 340px)
$menu-small-width: $menu-width - 40px !default;

View File

@ -7,15 +7,31 @@
// $font-size-root value, which is on the <html> element
// is what can scale all fonts
/// @prop - Font size of the root html
$font-size-root: 62.5% !default;
/// @prop - Font weight of all headings
$headings-font-weight: 500 !default;
/// @prop - Line height of all headings
$headings-line-height: 1.2 !default;
/// @prop - Font size of heading level 1
$h1-font-size: 2.6rem !default;
/// @prop - Font size of heading level 2
$h2-font-size: 2.4rem !default;
/// @prop - Font size of heading level 3
$h3-font-size: 2.2rem !default;
/// @prop - Font size of heading level 4
$h4-font-size: 2rem !default;
/// @prop - Font size of heading level 5
$h5-font-size: 1.8rem !default;
/// @prop - Font size of heading level 6
$h6-font-size: 1.6rem !default;