aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/misc/help.component.scss
blob: b8bf3a7a5c95ad2dca2661fba52730d301f0bb67 (plain) (blame)
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
@import '_variables';
@import '_mixins';

.help-tooltip-button {
  @include icon(17px);

  position: relative;
  top: -2px;
  background-image: url('../../../assets/images/global/help.svg');
  background-color: #fff;
  border: none;
}

/deep/ {
  .help-tooltip {
    opacity: 1 !important;

    .tooltip-inner {
      text-align: left;
      padding: 10px;
      max-width: 300px;

      font-size: 13px;
      font-family: $main-fonts;
      background-color: #fff;
      color: #000;
      box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    }

    ul {
      padding-left: 20px;
    }
  }
}