Browse Source

fix: 🧩 修改停车布局问题

pull/11/head
liyongle 3 years ago
parent
commit
3bf5cb3ad4
  1. 17
      src/components/CarInfo/CarInfo.vue

17
src/components/CarInfo/CarInfo.vue

@ -79,19 +79,25 @@ function go() {
<style lang="scss" scoped>
.car-info-wrapper {
position: fixed;
top: 0;
left: 0;
z-index: 1001;
width: 1920px;
height: 1080px;
background: rgb(0 0 0 / 50%);
inset: 0;
.masker {
position: absolute;
inset: 0;
position: fixed;
top: 0;
left: 0;
z-index: 2;
width: 1920px;
height: 1080px;
}
.car-content {
position: absolute;
top: 50%;
left: 50%;
top: 520px;
left: 952px;
z-index: 3;
width: 717px;
border-radius: 16px;
@ -113,6 +119,7 @@ function go() {
display: flex;
align-items: center;
padding: 48px 56px;
margin-top: -3px;
background: #efeeea;
}
.car-group {

Loading…
Cancel
Save