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

UI Overhaul

This commit is contained in:
2018-08-19 18:17:40 -05:00
parent 5fedcd4b40
commit e593472c84
58 changed files with 633 additions and 685 deletions

16
client/app/wrapper.scss Normal file
View File

@@ -0,0 +1,16 @@
@import './scss/variables';
@import './scss/mixins';
.wrapper {
padding-top: 50px;
transition: 0.2s padding-left ease-in-out;
padding-left: 0px;
&--open {
padding-left: $navbarWidth;
}
@include tinyScreen {
padding-left: 0px;
}
}