summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/blank.scss
blob: 6bb096fc5bdbf6e654b3394416d382838e2bb595 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
.blank-state-parent-container {
  .section-container {
    padding: 10px;
  }

  .section-body {
    width: 100%;
    height: 100%;
    padding-bottom: 25px;
    border: 1px solid $border-color;
    border-radius: $border-radius-default;
  }
}

.blank-state {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;

  &.blank-state-welcome {
    .blank-state-welcome-title {
      font-size: 24px;
    }

    .blank-state-text {
      margin-bottom: 0;
    }
  }

  .blank-state-icon {
    padding-bottom: 20px;

    svg {
      display: block;
      margin: auto;
    }
  }

  .blank-state-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .blank-state-text {
    max-width: $container-text-max-width;
    margin: 0 auto $gl-padding;
    font-size: 14px;
  }
}