Spaces:
Running
Running
File size: 660 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 |
.actions {
display: flex;
justify-content: end;
}
.input-file {
display: flex;
justify-content: center;
margin: 30px 0 10px 0;
&:hover {
cursor: pointer;
span {
border-bottom: 1px var(--secondary-color) solid;
color: var(--secondary-color);
}
}
}
.input-file span {
border-bottom: 1px var(--color-theme-2) solid;
color: var(--color-theme-2);
width: max-content;
}
.input-file input[type="file"] {
position: absolute;
z-index: -1;
opacity: 0;
display: block;
width: 0;
height: 0;
}
.file-name {
svg {
margin-right: 10px;
}
display: flex;
justify-content: center;
margin-bottom: 30px;
}
|