matrix-dimension/web/style/app.scss
turt2live 58feb07119 Support vector's RSS bot. Adds #13
This has a side effect of adding #23 as well. A more performant caching method is probably needed (as this doesn't cache at all).
2017-05-28 22:51:04 -06:00

29 lines
537 B
SCSS

// styles in src/style directory are applied to the whole page
@import '../../node_modules/angular2-toaster/toaster';
body {
background: #ddd !important;
margin: 0;
padding: 0;
color: #222;
}
// HACK: Work around dialog not showing up
// ref: https://github.com/shlomiassaf/angular2-modal/issues/280
.fade.in {
opacity: 1;
}
.modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.modal-backdrop.in {
opacity: 0.5;
}
button {
cursor: pointer;
}