VisibleRoleModal.less 1.31 KB
Newer Older
1 2 3
.role_container {
  display: flex;
  flex-direction: row;
4
  width: 80%;
5 6 7
  .select_btn {
    display: inline-block;
    cursor: pointer;
8
    text-align: center;
9 10
    padding: 0 0.8rem;
    color: rgba(22,133,255,1);
11 12 13 14 15 16
  } 
}
.list_card{
  overflow-y: scroll;
  height: 500px;
}
17
.divBox {
18 19 20 21 22 23 24 25 26 27 28
  // display: flex;
  width: 100%;
  flex-wrap: wrap;
  border: 1px solid #c2cdfd;
  border-radius: 5px;
  margin-top: 20px;
  min-height: 50px;
  padding: 0 10px 10px 20px;

  .ant-checkbox-wrapper {
    background-color: #fff;
29
  }
30 31 32 33 34

  .topCheckbox {
    // height: 75px;
    margin: -10px 0 0 0px;
    line-height: 20px;
35
  }
36 37 38

  .topCheckbox>label :hover {
    font-weight: 600;
39
  }
40 41

  .checkdiv {
42
    display: flex;
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
    flex-wrap: wrap;
    // margin-left: 20px;
    // justify-content: space-between;
  }
}

.divSingle {
  border: none;
  margin-top: 20px;
  min-width: 180px;
  // flex-grow: 0;
  // flex-shrink: 0;
  // flex:0 0 auto;
  // flex-basis: auto;
  margin-right: 10px;
  background: transparent;
}

.isSearch {
  color: red;
  background-color: yellow;
}

.boldLabel {
  font-size: 15px;
  font-weight: bold;
  background-color: #fff;
}

.btnBox {
  position: sticky;
  bottom: 0px;
  right: 0px;
  background-color: #fff;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}