layout.scss 581 字节
Newer Older
D
Dmitriy Zaporozhets 已提交
1 2
html {
  overflow-y: scroll;
A
Andrey 已提交
3 4
  height: 100%;
  margin: 0;
5 6

  &.touch .tooltip { display: none !important; }
D
Dmitriy Zaporozhets 已提交
7 8

  body {
9
    padding-top: $header-height;
A
Andrey 已提交
10 11
    height: 100%;
    margin: 0;
D
Dmitriy Zaporozhets 已提交
12
  }
D
Dmitriy Zaporozhets 已提交
13 14 15 16
}

.container {
  padding-top: 0;
A
Andrey 已提交
17 18
  height: 100%;
  width: 100%;
D
Dmitriy Zaporozhets 已提交
19 20 21
  z-index: 5;
}

A
Andrey 已提交
22 23 24 25 26 27 28 29 30 31
.content {
  height: 100%;
  width: 100%;
}

.content section {
  height: 100%;
  display: table-row;
}

D
Dmitriy Zaporozhets 已提交
32
.container .content {
33
  margin: 0 0;
D
Dmitriy Zaporozhets 已提交
34
}
35

D
Dmitriy Zaporozhets 已提交
36 37 38
.navless-container {
  margin-top: 30px;
}
39 40 41 42

.container-limited {
  max-width: $fixed-layout-width;
}
A
Andrey 已提交
43 44 45 46 47 48

.max-height {
  height: 100%;
  display: table;
  width: 100%;
}