mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
30 lines
800 B
SCSS
30 lines
800 B
SCSS
|
|
// Material Design List
|
|
// --------------------------------------------------
|
|
|
|
$list-md-header-padding: 16px $item-md-padding-right 16px $item-md-padding-left !default;
|
|
$list-md-header-font-size: 1.6rem !default;
|
|
$list-md-header-color: #6d6d72 !default;
|
|
|
|
$list-md-footer-padding: 16px $item-md-padding-right 16px $item-md-padding-left !default;
|
|
$list-md-footer-font-size: 1.2rem !default;
|
|
$list-md-footer-color: #8f8f94 !default;
|
|
|
|
|
|
.list[mode=md] {
|
|
|
|
ion-header {
|
|
padding: $list-md-header-padding;
|
|
font-size: $list-md-header-font-size;
|
|
color: $list-md-header-color;
|
|
}
|
|
|
|
ion-footer {
|
|
padding: $list-md-footer-padding;
|
|
font-size: $list-md-footer-font-size;
|
|
text-transform: uppercase;
|
|
color: $list-md-footer-color;
|
|
}
|
|
|
|
}
|