1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-11 09:32:50 +00:00

work in progress - about to refactor how sounds are played

This commit is contained in:
2017-02-03 16:06:31 +00:00
parent 819afb3d2a
commit 0d3756fe54
34 changed files with 5947 additions and 60 deletions

View File

@@ -0,0 +1,25 @@
@import '../../scss/variables';
.Soundboard {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.Dropzone {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border: 2px solid lighten($gray1, 10%);
padding: 20px;
color: lighten($gray1, 15%);
border-radius: 1em;
width: 200px;
height: 200px;
}
.Dropzone--active {
background-color: lighten($gray1, 20%);
}