第一版
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
page {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
background-color: #F5F7FB;
|
||||
}
|
||||
|
||||
image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
button {
|
||||
all: unset;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
button::after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.scrollView {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.arrowAfter {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.arrowAfter::after {
|
||||
position: absolute;
|
||||
right: 6rpx;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
margin: auto;
|
||||
content: "";
|
||||
width: 12rpx;
|
||||
height: 12rpx;
|
||||
border-left: 5rpx solid #b6b6b6;
|
||||
border-top: 5rpx solid #b6b6b6;
|
||||
transform: rotate(135deg);
|
||||
}
|
||||
Reference in New Issue
Block a user