import { AtomWindowStyle } from "@web-atoms/core/dist/web/styles/AtomWindowStyle"; import { IStyleDeclaration } from "@web-atoms/core/dist/web/styles/IStyleDeclaration"; export default class PublishStyle extends AtomWindowStyle { public get content(): IStyleDeclaration { return { textAlign: "center", subclasses: { " .store-button": this.storeButton } }; } public get storeButton(): IStyleDeclaration { return { border: "none", subclasses: { " > img": { maxHeight: "50px", margin: "5px" } } }; } }