aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/info-box/index.scss
blob: 8726235572fcfa04904b96dc3e85a524dbed6b43 (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
.info-box {
  border-radius: 4px;
  background-color: $muddy-gray;
  position: relative;
  padding: 16px;
  display: flex;
  flex-flow: column;
  color: $mid-gray;

  &__close::after {
    content: '\00D7';
    font-size: 29px;
    font-weight: 200;
    color: $dusty-gray;
    position: absolute;
    right: 12px;
    top: 0;
    cursor: pointer;
  }

  &__description {
    font-size: .75rem;
  }
}