aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/export-text-container/index.scss
blob: e913f97b0f3938795c31ca27dbcf8131f9671f01 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
.export-text-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border: 1px solid #a4a4a4;
  border-radius: 4px;
  font-weight: 400;

  &__text-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    border-radius: 4px;
    background: #f0f0f0;
  }

  &__text {
    resize: none;
    border: none;
    background: #f0f0f0;
    font-size: 20px;
    text-align: center;
  }

  &__buttons-container {
    display: flex;
    flex-direction: row;
    border-top: 1px solid #a4a4a4;
    width: 100%;
  }

  &__button {
    padding: 10px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
    color: black;

    &--copy {
      border-right: 1px solid #a4a4a4;
    }
  }

  &__button-text {
    padding-left: 10px;
  }
}