react-openfin-mat-impl
Version:
Materialize UI implementation of react-openfin
25 lines • 945 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const styles_1 = require("@material-ui/core/styles");
const openfin_starter_constant_1 = require("../openfin-starter-constant");
const notificationStyle = (theme) => styles_1.createStyles({
container: {
width: '100vw',
height: '100vh',
color: theme.palette.text.primary,
backgroundColor: theme.palette.background.default,
position: 'relative',
boxShadow: `inset 0 0 ${openfin_starter_constant_1.default.windowBorder * 2}px #ffffff`,
},
lightBoxShaddow: {
boxShadow: `inset 0 0 ${openfin_starter_constant_1.default.windowBorder * 2}px #000000`,
},
closeBtn: {
position: 'absolute',
top: theme.spacing(0.5),
right: theme.spacing(0.5),
zIndex: theme.zIndex.appBar + 5,
},
});
exports.default = notificationStyle;
//# sourceMappingURL=notification.style.js.map