mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
26 lines
662 B
SCSS
26 lines
662 B
SCSS
@import "../../globals.core";
|
|
|
|
// Button Sizes
|
|
// --------------------------------------------------
|
|
|
|
$button-large-font-size: 2rem !default;
|
|
$button-large-height: 2.8em !default;
|
|
$button-large-padding: 1.0em !default;
|
|
|
|
$button-small-font-size: 1.3rem !default;
|
|
$button-small-height: 2.1em !default;
|
|
$button-small-padding: 0.9em !default;
|
|
|
|
|
|
.button-large {
|
|
padding: 0 $button-large-padding;
|
|
min-height: $button-large-height;
|
|
font-size: $button-large-font-size;
|
|
}
|
|
|
|
.button-small {
|
|
padding: 0 $button-small-padding;
|
|
min-height: $button-small-height;
|
|
font-size: $button-small-font-size;
|
|
}
|