parsley/app/javascript/styles/index.scss

36 lines
669 B
SCSS
Raw Normal View History

2018-03-30 14:31:09 -05:00
@import "./variables";
@import "~bulma/sass/utilities/_all";
@import "~bulma/sass/base/_all";
@import "~bulma/sass/components/navbar";
2018-04-01 21:43:23 -05:00
@import "~bulma/sass/components/level";
@import "~bulma/sass/components/message";
2018-03-30 17:08:09 -05:00
@import "~bulma/sass/components/modal";
2018-04-03 18:31:20 -05:00
@import "~bulma/sass/components/pagination";
2018-03-30 14:31:09 -05:00
@import "~bulma/sass/elements/_all";
@import "~bulma/sass/grid/columns";
@import "~bulma/sass/layout/section";
2018-04-01 21:43:23 -05:00
@import "./responsive_controls";
2018-04-02 00:10:06 -05:00
html {
height: 100%;
}
body {
2018-04-01 22:32:13 -05:00
min-height: 100%;
}
2018-03-30 14:31:09 -05:00
body {
background-color: $grey-dark;
2018-04-01 22:32:13 -05:00
padding-bottom: 2rem;
2018-03-30 14:31:09 -05:00
}
2018-04-01 21:43:23 -05:00
#app {
padding-top: 1rem;
.container {
padding: 1rem;
background-color: $white;
}
2018-03-30 14:31:09 -05:00
}