aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/components/presentational/Result.scss
blob: 1ca0dd82207b82eef13f12f1b36aea58e79fdc6b (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
.Result {
  display: flex;
  cursor: pointer;

  &:hover, &.isSelected {
    background-color: lightgray;
  }

  .iconWrapper {
    height: 54px;
    padding: 15px;

    svg {
      height: 24px;
      width: 24px;
    }
  }

  .text {
      padding: 15px;
      padding-left: 0px;
      font-size: 16px;
      transform: translate(0, 3px);

      .alt {
        font-style: italic;
        color: gray;
      }
    }
}