@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
27 lines (25 loc) • 996 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.wrapperStyle = void 0;
var _react = require("@emotion/react");
/* eslint-disable @atlaskit/ui-styling-standard/use-compiled -- Pre-existing lint debt surfaced by this mechanical type-import-only PR. */
// 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-radius-small, 3px)",
color: "var(--ds-text, #292A2E)",
backgroundColor: "var(--ds-background-neutral, #0515240F)",
transition: '0.1s all ease-in-out',
cursor: 'pointer',
'&:hover': {
backgroundColor: "var(--ds-background-neutral-hovered, #0B120E24)"
}
});