mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
UI Overhaul
This commit is contained in:
22
client/app/components/uploader/uploader.scss
Normal file
22
client/app/components/uploader/uploader.scss
Normal file
@@ -0,0 +1,22 @@
|
||||
@import '../../scss/variables';
|
||||
|
||||
.dropzone {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 2px solid $primaryBlue;
|
||||
border-radius: 1em;
|
||||
max-width: 800px;
|
||||
margin-bottom: 20px;
|
||||
padding: 20px;
|
||||
color: $lightGray;
|
||||
background-color: $gray2;
|
||||
transition: box-shadow 0.1s linear, background-color 0.1s linear;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.dropzone--active {
|
||||
background-color: $gray3;
|
||||
box-shadow: 0px 0px 5px 1px $primaryBlue;
|
||||
}
|
||||
Reference in New Issue
Block a user