aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/currency-input/index.scss
blob: f659f5b351f684c1146dc8abc0c6f3bcd28b94d7 (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
.currency-input {
  &__conversion-component {
    font-size: 12px;
    line-height: 12px;
    padding-left: 1px;
  }

  &__swap-component {
    flex: 0 0 auto;
    height: 24px;
    width: 24px;
    background-image: url("images/icons/swap.svg");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: .4;

    &:hover {
      opacity: .3;
    }

    &:active {
      opacity: .5;
    }
  }
}