File size: 1,168 Bytes
79278ec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
.pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;

  .link {
    margin-bottom: 0;
  }

  .total {
    color: var(--placeholder-color);
    margin-right: 10px;
  }
  .item {
    padding: 2px;
    background-color: var(--white-color);
    &:hover:not(.active) {
      background-color: var(--primary-color);
    }
  }
  .active {
    color: var(--white-color);
    background-color: var(--secondary-color);
  }

  .page-actions {
    margin-left: 30px;
    display: flex;
    gap: 10px;
    .with_icon_container {
      height: 100%;
      width: 170px;
      input::-webkit-outer-spin-button,
      input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
      }

      input[type="number"] {
        -moz-appearance: textfield;
      }
      .btn {
        margin-right: 10px;
      }
    }
  }

  .react-select {
    &__control {
      border-radius: 10px;
      width: 130px;

      &:hover {
        cursor: pointer;
      }
    }

    &__option {
      &:hover {
        cursor: pointer;
      }
    }

    &__value-container {
      text-align: start;
    }
  }
}