mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
58feb07119
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).
29 lines
537 B
SCSS
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;
|
|
} |