Update src/styles/styles.css
All checks were successful
Release to Staging / build_and_release (push) Successful in 58s

This commit is contained in:
freakoverse 2025-01-01 12:17:25 +00:00
parent a46aaa9e55
commit aa9f1015e1

View File

@ -705,3 +705,27 @@ a:hover {
transform: rotate(360deg); transform: rotate(360deg);
} }
} }
.uploadBoxMain {
background: hsl(0deg 0% 0% / 10%);
border-radius: 10px;
height: 100px;
padding: 10px;
border: solid 1px hsl(0deg 0% 100% / 5%);
}
.uploadBoxMain:hover > .uploadBoxMainInside {
padding: 5px;
}
.uploadBoxMainInside {
padding: 10px;
border: dashed 2px hsl(0deg 0% 100% / 5%);
border-radius: 8px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: hsl(0deg 0% 100% / 20%);
}