index.less 486 Bytes
Newer Older
jim's avatar
jim committed
1
@import '~antd/lib/style/themes/default.less';
2 3 4 5

.toolbar {
  position: fixed;
  right: 0;
6 7 8
  bottom: 0;
  z-index: 9;
  width: 100%;
9
  height: 56px;
10
  padding: 0 24px;
11 12
  line-height: 56px;
  background: #fff;
afc163's avatar
afc163 committed
13
  border-top: 1px solid @border-color-split;
14
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03);
15

16
  &::after {
17 18
    display: block;
    clear: both;
19
    content: '';
20 21 22 23 24 25 26 27 28 29 30 31 32 33
  }

  .left {
    float: left;
  }

  .right {
    float: right;
  }

  button + button {
    margin-left: 8px;
  }
}