BasicLayout.less 1.84 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
  padding-left: 24px;
afc163's avatar
afc163 committed
15
  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 31
    margin-top: -3px;
    font-weight: bold;
32 33 34
  }
}

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

.trigger {
  font-size: 20px;
  line-height: 64px;
  cursor: pointer;
  transition: all .3s;
niko's avatar
niko committed
47
  padding: 0 24px;
48
  &:hover {
afc163's avatar
afc163 committed
49
    background: @primary-1;
50 51 52
  }
}

afc163's avatar
afc163 committed
53 54 55 56 57 58
@media screen and (max-width: @screen-xs) {
  .trigger {
    display: none;
  }
}

59 60 61 62 63 64 65 66 67 68
.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
69
      font-size: 16px;
70 71 72 73
      vertical-align: middle;
    }
    &:global(.ant-popover-open),
    &:hover {
afc163's avatar
afc163 committed
74
      background: @primary-1;
75 76
    }
  }
afc163's avatar
afc163 committed
77 78 79 80 81 82
  .search {
    padding: 0;
    margin: 0 12px;
    &:hover {
      background: transparent;
    }
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
  }
  .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
99
    width: 160px;
100 101 102 103 104 105 106 107
  }
}

:global {
  .ant-layout {
    overflow-x: hidden;
  }
}
afc163's avatar
afc163 committed
108 109 110 111 112

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