BasicLayout.less 1.75 KB
Newer Older
1 2 3
@import "~antd/lib/style/themes/default.less";

.header {
niko's avatar
niko committed
4
  padding: 0 12px 0 0;
afc163's avatar
afc163 committed
5
  background: #fff;
afc163's avatar
afc163 committed
6 7
  box-shadow: 0 1px 4px rgba(0, 21, 41, .12);
  position: relative;
8 9 10 11 12 13
}

.logo {
  height: 64px;
  position: relative;
  line-height: 64px;
afc163's avatar
afc163 committed
14 15
  padding-left: 32px;
  transition: all .3s;
afc163's avatar
afc163 committed
16
  background: #002140;
17 18 19 20 21 22 23 24 25 26
  overflow: hidden;
  img {
    display: inline-block;
    vertical-align: middle;
    height: 32px;
  }
  h1 {
    color: #fff;
    display: inline-block;
    vertical-align: middle;
niko's avatar
niko committed
27
    font-size: 18px;
28
    margin-left: 12px;
nikogu's avatar
nikogu committed
29
    font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
afc163's avatar
afc163 committed
30
    margin-top: -2px;
31 32 33
  }
}

afc163's avatar
afc163 committed
34 35 36 37 38
:global(.ant-layout-sider-collapsed) .logo {
  padding-left: 24px;
  > a {
    width: 32px;
  }
39 40 41 42 43 44 45
}

.trigger {
  font-size: 20px;
  line-height: 64px;
  cursor: pointer;
  transition: all .3s;
niko's avatar
niko committed
46
  padding: 0 24px;
47
  &:hover {
afc163's avatar
afc163 committed
48
    background: rgba(0, 0, 0, .04);
49 50 51 52 53 54 55 56 57 58 59 60 61
  }
}

.right {
  float: right;
  height: 100%;
  .action {
    cursor: pointer;
    padding: 0 12px;
    display: inline-block;
    transition: all .3s;
    height: 100%;
    > i {
afc163's avatar
afc163 committed
62
      font-size: 16px;
63 64 65 66
      vertical-align: middle;
    }
    &:global(.ant-popover-open),
    &:hover {
afc163's avatar
afc163 committed
67
      background: @primary-1;
68 69
    }
  }
afc163's avatar
afc163 committed
70 71 72 73 74 75
  .search {
    padding: 0;
    margin: 0 12px;
    &:hover {
      background: transparent;
    }
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
  }
  .account {
    .avatar {
      margin: 20px 8px 20px 0;
      color: @primary-color;
      background: rgba(255, 255, 255, .85);
      vertical-align: middle;
    }
  }
}

.menu {
  :global(.anticon) {
    margin-right: 8px;
  }
  :global(.ant-dropdown-menu-item) {
afc163's avatar
afc163 committed
92
    width: 160px;
93 94 95 96 97 98 99 100
  }
}

:global {
  .ant-layout {
    overflow-x: hidden;
  }
}
afc163's avatar
afc163 committed
101 102 103 104 105

.sider {
  min-height: 100vh;
  box-shadow: 2px 0 6px rgba(0, 21, 41, .35);
  position: relative;
niko's avatar
niko committed
106
  z-index: 10;
afc163's avatar
afc163 committed
107
}