mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
41 lines
599 B
SCSS
41 lines
599 B
SCSS
@import "../../globals.core";
|
|
|
|
// Item Media
|
|
// --------------------------------------------------
|
|
// Icons, avatars, thumbnails, notes, etc.
|
|
|
|
.item > icon[small]:first-child,
|
|
.item-inner > icon[small]:first-child {
|
|
min-width: 18px;
|
|
}
|
|
|
|
.item > icon:first-child,
|
|
.item-inner > icon:first-child {
|
|
min-width: 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
.item > icon,
|
|
.item-inner > icon {
|
|
line-height: 1;
|
|
font-size: 2.4rem;
|
|
|
|
&[large] {
|
|
font-size: 3.2rem;
|
|
}
|
|
|
|
&[small] {
|
|
font-size: 1.8rem;
|
|
}
|
|
}
|
|
|
|
ion-avatar,
|
|
ion-thumbnail {
|
|
display: block;
|
|
line-height: 1;
|
|
|
|
img {
|
|
display: block;
|
|
}
|
|
}
|