common.less 929 Bytes
//此处为全局样式,不得随意修改
@import './default.less';
@import './loading.less';
//超出省略
.ellipsis{
  overflow: hidden;
  white-space: nowrap;
  word-break: normal;
  text-overflow: ellipsis;
}

a{
  text-decoration: none !important;
  &:active{
    text-decoration: none !important;
  }
  a:hover{
    text-decoration: none !important;
  }
}
.logo{
  background-color: #2D305F;
  display: flex;
  justify-content:center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  .logo_img{
    width: 76%;
    position: relative;
    left: 9px;
    img{
      width: 74%;
    }
  }
}


.logo .trigger {
  font-size: 18px;
  color: #888;
  line-height: 50px;
  cursor: pointer;
  transition: color .5s;
  position: relative;
  z-index: 666;
  // min-width: 50px;
}

.logo .trigger:hover {
  color: #fff;
}

 .ant-layout-sider-collapsed{
  .logo {
    .trigger {
      margin-right: 30px;
    }
  }
 }