@skbkontur/db-viewer-ui
Version:
Database Viewer with custom configuration
45 lines • 1.13 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.jsStyles = void 0;
const Emotion_1 = require("@skbkontur/react-ui/lib/theming/Emotion");
exports.jsStyles = {
tableWrapper() {
return (0, Emotion_1.css) `
white-space: nowrap;
`;
},
cell() {
return (0, Emotion_1.css) `
padding: 10px;
`;
},
headerCell() {
return (0, Emotion_1.css) `
font: inherit;
text-align: left;
`;
},
row(t) {
return (0, Emotion_1.css) `
border-bottom: 1px solid ${t.borderColorGrayLight};
`;
},
tableHeaderRow(t) {
return (0, Emotion_1.css) `
border-bottom: 1px solid ${t.borderColorGrayDark};
`;
},
container() {
return (0, Emotion_1.css) `
position: relative;
display: inline-block;
`;
},
table() {
return (0, Emotion_1.css) `
border-collapse: collapse;
border-spacing: 0;
`;
},
};
//# sourceMappingURL=ObjectTable.styles.js.map
;