25 lines
413 B
SCSS
25 lines
413 B
SCSS
.stars {
|
|
display: flex;
|
|
width: var(--width--);
|
|
height: var(--height--);
|
|
/* width: 100%;
|
|
height: 100px; */
|
|
}
|
|
|
|
.stars view {
|
|
position: relative;
|
|
width: var(--width--);
|
|
height: var(--height--);
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.stars view image:nth-of-type(1) {
|
|
width: 50%;
|
|
height: 100%;
|
|
margin-right: -2rpx;
|
|
}
|
|
.stars view image:nth-of-type(2) {
|
|
width: 50%;
|
|
height: 100%;
|
|
margin-left: -1rpx;
|
|
} |