@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
26 lines (24 loc) • 858 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.wrapperStyle = void 0;
var _react = require("@emotion/react");
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
var wrapperStyle = exports.wrapperStyle = (0, _react.css)({
display: 'inline-flex',
width: '100%',
height: '100%',
alignItems: 'center',
justifyContent: 'center',
boxDecorationBreak: 'clone',
borderRadius: "var(--ds-border-radius, 3px)",
color: "var(--ds-text, #172B4D)",
backgroundColor: "var(--ds-background-neutral, #091E420F)",
transition: '0.1s all ease-in-out',
cursor: 'pointer',
'&:hover': {
backgroundColor: "var(--ds-background-neutral-hovered, #091E4224)"
}
});