mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
32 lines
757 B
SCSS
32 lines
757 B
SCSS
|
|
// Button Sizes
|
|
// --------------------------------------------------
|
|
|
|
$button-large-font-size: 2rem !default;
|
|
$button-large-height: 5.4rem !default;
|
|
$button-large-padding: 1.4rem !default;
|
|
|
|
$button-small-font-size: 1.3rem !default;
|
|
$button-small-height: 2.8rem !default;
|
|
$button-small-padding: 1.1rem !default;
|
|
|
|
|
|
button,
|
|
[button] {
|
|
|
|
&[large] {
|
|
padding: 0 $button-large-padding;
|
|
min-width: ($button-large-padding * 4);
|
|
min-height: $button-large-height;
|
|
font-size: $button-large-font-size;
|
|
}
|
|
|
|
&[small] {
|
|
padding: 0 $button-small-padding;
|
|
min-width: ($button-small-padding * 3);
|
|
min-height: $button-small-height;
|
|
font-size: $button-small-font-size;
|
|
}
|
|
|
|
}
|