SiderLogo.less 544 Bytes
Newer Older
vipcxj's avatar
vipcxj committed
1 2 3 4 5 6 7 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
.logo {
  text-align: center;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
  margin-top: 24px;
  margin-bottom: 24px;
  overflow: hidden;

  img {
    width: 30px;
    margin-right: 8px;
  }

  span {
    vertical-align: top;
    font-size: 16px;
    color: #eeeeee;
    text-transform: uppercase;
    display: inline-block;
  }
}

:global .ant-layout-sider-collapsed {
  :local .logo {
    height: 24px;
    line-height: 24px;

    img {
      width: 24px;
      margin-left: 8px;
    }

    span {
      display: none;
    }
  }
}