19 lines
259 B
Plaintext
19 lines
259 B
Plaintext
|
|
/* components/icon/icon.wxss */
|
||
|
|
.icon {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex-shrink: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon-image {
|
||
|
|
display: block;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon-text {
|
||
|
|
font-size: 24rpx;
|
||
|
|
color: currentColor;
|
||
|
|
}
|