matrix-dimension/web/style/app.scss

29 lines
537 B
SCSS
Raw Normal View History

// 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;
}