checkBox.less 523 Bytes
Newer Older
张烨's avatar
张烨 committed
1 2
.box{
  display: flex;
Maofei94's avatar
Maofei94 committed
3
  padding: 20px;
张烨's avatar
张烨 committed
4
  flex-wrap: wrap;
Maofei94's avatar
Maofei94 committed
5 6 7 8 9 10 11 12 13 14 15 16 17
  border: 1px solid #d9d9d9;
  width: 93%;
  margin-left: 3%;
}
.boxtitle{
  position: relative;
  top: 10px;
  margin-left: 5%;
}
.boxspan{
  font-weight: bold;
  background-color: #fff;
  padding: 0 5px;
张烨's avatar
张烨 committed
18 19 20 21 22
}
.check{
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 150px;
Maofei94's avatar
Maofei94 committed
23
  overflow: hidden;
张烨's avatar
张烨 committed
24
  padding-bottom: 10px;
Maofei94's avatar
Maofei94 committed
25 26 27 28 29 30 31
  margin-right: 10px;
  .ant-checkbox-wrapper{
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
张烨's avatar
张烨 committed
32
}