mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +00:00
46 lines
974 B
JavaScript
46 lines
974 B
JavaScript
import style from './style';
|
|
import compose from './compose';
|
|
|
|
function transform(value) {
|
|
return value <= 1 ? "".concat(value * 100, "%") : value;
|
|
}
|
|
|
|
export var width = style({
|
|
prop: 'width',
|
|
transform: transform
|
|
});
|
|
export var maxWidth = style({
|
|
prop: 'maxWidth',
|
|
transform: transform
|
|
});
|
|
export var minWidth = style({
|
|
prop: 'minWidth',
|
|
transform: transform
|
|
});
|
|
export var height = style({
|
|
prop: 'height',
|
|
transform: transform
|
|
});
|
|
export var maxHeight = style({
|
|
prop: 'maxHeight',
|
|
transform: transform
|
|
});
|
|
export var minHeight = style({
|
|
prop: 'minHeight',
|
|
transform: transform
|
|
});
|
|
export var sizeWidth = style({
|
|
prop: 'size',
|
|
cssProperty: 'width',
|
|
transform: transform
|
|
});
|
|
export var sizeHeight = style({
|
|
prop: 'size',
|
|
cssProperty: 'height',
|
|
transform: transform
|
|
});
|
|
export var boxSizing = style({
|
|
prop: 'boxSizing'
|
|
});
|
|
var sizing = compose(width, maxWidth, minWidth, height, maxHeight, minHeight, boxSizing);
|
|
export default sizing; |