mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
41 lines
712 B
SCSS
41 lines
712 B
SCSS
@import '../../scss/variables';
|
|
|
|
.Soundboard {
|
|
display: flex;
|
|
padding: 10px;
|
|
}
|
|
|
|
.Soundboard__column {
|
|
flex: 1;
|
|
}
|
|
|
|
.Soundboard__input {
|
|
display: block;
|
|
width: 200px;
|
|
margin-bottom: 10px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.Dropzone {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 2px solid $primaryBlue;
|
|
border-radius: 1em;
|
|
padding: 20px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
color: $lightGray;
|
|
width: 400px;
|
|
height: 400px;
|
|
background-color: $gray2;
|
|
transition: box-shadow 0.1s linear, background-color 0.1s linear;
|
|
}
|
|
|
|
.Dropzone--active {
|
|
background-color: $gray3;
|
|
box-shadow: 0px 0px 5px 1px $primaryBlue;
|
|
}
|