miniMenu.less 1.36 KB
Newer Older
Maofei94's avatar
Maofei94 committed
1
.box{
Maofei94's avatar
Maofei94 committed
2
  min-height: calc( 100vh - 242px)!important;
Maofei94's avatar
Maofei94 committed
3 4 5 6
  display: flex;
}
.left{
  min-width: 300px;
Maofei94's avatar
Maofei94 committed
7
  width: 350px;
Maofei94's avatar
Maofei94 committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 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
  min-height: 100%;
  border: 1px solid #eee;
  padding: 10px;
  .ant-tree-node-content-wrapper{
    display: flex;
    align-items: center;
    .ant-tree-iconEle{
      display: flex;
      align-items: center;
    }
    .ant-tree-title{
      width: 100%;
    }
  }
  .leftTop{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
    .tRight{
      display: flex;
      align-items: center;
      .icon1{
        font-size: 20px;
        margin-right: 10px;
      }
      .icon2{
        font-size: 18px;
        margin-right: 5px;
      }
      .icon:hover{
        cursor: pointer;
      }
    }
  }
}
.middle{
  min-width: 500px;
  width: 500px;
  min-height: 100%;
  border: 1px solid #eee;
  padding: 10px;
  margin: 0 10px;
}
.title{
  display: flex;
  align-items: center;
  width: 100%;
}
.tip{
  display: none;
}
.title:hover{
  .tip{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
}
Maofei94's avatar
Maofei94 committed
68
.fsize{
Maofei94's avatar
Maofei94 committed
69 70
  font-size: 18px;
  margin-left: 10px;
Maofei94's avatar
Maofei94 committed
71 72
}
.rightBox{
Maofei94's avatar
Maofei94 committed
73
  min-width: 200px;
Maofei94's avatar
Maofei94 committed
74
  // width: 600px;
Maofei94's avatar
Maofei94 committed
75
  width: 100%;
Maofei94's avatar
Maofei94 committed
76 77 78
  min-height: 100%;
  border: 1px solid #eee;
  padding: 10px;
Maofei94's avatar
Maofei94 committed
79 80 81 82 83
}
:global{
  .ant-tree .ant-tree-node-content-wrapper .ant-tree-iconEle .anticon-folder{
    
  }
Maofei94's avatar
Maofei94 committed
84
}