@octopusdeploy/design-system-components
Version:
The design systems component library.
47 lines (46 loc) • 1.07 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.resetStyles = void 0;
const buttonResetStyles = {
all: "unset",
cursor: "pointer",
boxSizing: "border-box",
};
const anchorResetStyles = {
all: "unset",
cursor: "pointer",
boxSizing: "border-box",
};
const listResetStyles = {
all: "unset",
display: "block",
listStyle: "none",
boxSizing: "border-box",
};
const headingResetStyles = {
all: "unset",
display: "block",
boxSizing: "border-box",
};
const paragraphResetStyles = {
all: "unset",
display: "block",
boxSizing: "border-box",
};
const inputResetStyles = {
all: "unset",
boxSizing: "border-box",
};
const descriptionElementsResetStyles = {
all: "unset",
boxSizing: "border-box",
};
exports.resetStyles = {
button: buttonResetStyles,
anchor: anchorResetStyles,
list: listResetStyles,
heading: headingResetStyles,
paragraph: paragraphResetStyles,
input: inputResetStyles,
description: descriptionElementsResetStyles,
};