aboutsummaryrefslogtreecommitdiff
path: root/src/client/style/_component-help-box.scss
blob: e7457c27c9a089319cd98d1a07813bbf6d74ce28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.help-box {
  position: relative;
  margin-top: 32px;

  .arrow {
    position: absolute;
    background-color: white;
    width: 32px;
    height: 32px;
    top: -16px;
    left: 48px;
    transform: rotate(45deg);
  }

  .bubble {
    position: relative;
    background-color: white;
    font-weight: bold;
    margin: 16px;
    padding: 16px;
    border-radius: 4px;
  }
}