mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
38 lines
485 B
SCSS
38 lines
485 B
SCSS
|
|
// Item Media
|
|
// --------------------------------------------------
|
|
// Icons, avatars, thumbnails, notes, etc.
|
|
|
|
|
|
.item > icon:first-child {
|
|
min-width: 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
.list .item > icon[small]:first-child {
|
|
min-width: 18px;
|
|
}
|
|
|
|
.item > 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;
|
|
}
|
|
}
|