16 lines
437 B
JavaScript
16 lines
437 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.noWrap = exports.normalize = void 0;
|
||
|
// This file mimics styles and mixins from _General.Mixins.scss
|
||
|
exports.normalize = {
|
||
|
boxShadow: 'none',
|
||
|
margin: 0,
|
||
|
padding: 0,
|
||
|
boxSizing: 'border-box',
|
||
|
};
|
||
|
exports.noWrap = {
|
||
|
overflow: 'hidden',
|
||
|
textOverflow: 'ellipsis',
|
||
|
whiteSpace: 'nowrap',
|
||
|
};
|
||
|
//# sourceMappingURL=GeneralStyles.js.map
|