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