19 lines
379 B
SCSS
19 lines
379 B
SCSS
@import '@/assets/bundle.scss';
|
|
|
|
.mine-address {
|
|
$bottomH: 100rpx;
|
|
#{&}-top {
|
|
height: calc(100vh - 100rpx);
|
|
overflow-y: auto;
|
|
box-sizing: border-box;
|
|
border-top: 1rpx solid $border2;
|
|
}
|
|
#{&}-bottom {
|
|
height: $bottomH;
|
|
box-sizing: border-box;;
|
|
background-color: $maincolor;
|
|
color: white;
|
|
@extend %flex-center;
|
|
font-size: 36rpx;
|
|
}
|
|
} |