import { AtomStyle } from "@web-atoms/core/dist/web/styles/AtomStyle"; import { IStyleDeclaration } from "@web-atoms/core/dist/web/styles/IStyleDeclaration"; export default class CodeEditorStyle extends AtomStyle { public get root(): IStyleDeclaration { return { position: "absolute", width: "100%", height: "100%", margin: 0, padding: 0, overflow: "hidden", border: "none" }; } }