Buttons shtuff

This commit is contained in:
Max Lynch
2015-07-20 13:44:27 -05:00
parent 34b62ff172
commit 6c5dbbd680
6 changed files with 40 additions and 8 deletions

View File

@ -2,10 +2,10 @@
// Core Button Variables
// --------------------------------------------------
$button-font-size: 1.4rem !default;
$button-font-size: 1.6rem !default;
$button-margin: 0.4rem 0 !default;
$button-padding: 0 1.4rem !default;
$button-height: 4.2rem !default;
$button-padding: 0 2rem !default;
$button-height: 4.4rem !default;
$button-border-width: 1px !default;
$button-border-radius: 4px !default;
$button-icon-size: 2.5rem !default;
@ -22,6 +22,9 @@ $button-small-icon-size: 2.1rem !default;
$button-fab-size: 56px;
$button-round-border-radius: 64px !default;
$button-round-padding: 0 2.6rem !default;
// Core Button
// --------------------------------------------------
@ -130,6 +133,11 @@ button,
pointer-events: none;
}
&[round] {
border-radius: $button-round-border-radius;
padding: $button-round-padding;
}
// FABulous buttons (Floating action button from material)
&[fab] {