mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
30 lines
794 B
SCSS
30 lines
794 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: #222 !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: #222 !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;
|
|
}
|
|
|
|
}
|