rhino-editor
Version:
A custom element wrapped rich text editor
26 lines (22 loc) • 371 B
JavaScript
// src/exports/styles/normalize.ts
import { css } from "lit";
var normalize = css`
[hidden] {
display: none ;
}
*,
*::after,
*::before {
box-sizing: border-box;
}
button {
background-color: inherit;
border: none;
color: inherit;
cursor: pointer;
}
`;
export {
normalize
};
//# sourceMappingURL=chunk-PA75CBW2.js.map