File size: 537 Bytes
74aacd5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@use '../../styles/Mixins/' as *;

.file-select-label {
  display: grid;
  cursor: pointer;
  border: 2px dashed var(--border-color);
  border-radius: 0.5rem;
  min-width: 600px;

  @include mobile {
    min-width: 300px;
  }

  &:hover,
  .file-select-label-hover {
    color: black;
    background-color: var(--yellow-accent);
  }
}

.file-select-container {
  display: grid;
  padding: 4rem;
  width: 100%;
  height: 100%;

  input {
    display: none;
  }
}

.file-select-message {
  font-family: 'WorkSans';
  text-align: center;
}