productConfig.less 621 Bytes
Newer Older
1 2 3 4

.box{
  width: 100%;
  display: flex;
5
  height: calc(100vh - 72px);
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
}
.leftList{
  width: 330px;
}
.rightForm{
  width: 100%;
}
.listTop{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -20px;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.listItem{
  height: 35px !important;
  padding-left: 5px;
  cursor: pointer;
  font-size: 14px;
Maofei94's avatar
Maofei94 committed
26 27 28 29 30 31
  display: flex;
  align-items: center;
  justify-content: flex-start;
  .itemspan{
    margin-left: 10px;
  }
32 33 34 35 36 37 38 39
}
.listItem:hover{
  background-color:  #f8f8f8  ;
}
.selected{
  font-weight: bold;
  background-color: #bae7ff!important;
}