fix: maxWidth → width

This commit is contained in:
Eugene Rodionov 2015-07-23 09:16:43 +03:00
parent 1975e0f177
commit 55f70550b6

View File

@ -20,7 +20,7 @@ export function getDefaultStyle(props) {
top: top ? 0 : undefined,
bottom: bottom ? 0 : undefined,
maxHeight: (bottom && top) ? '100%' : '20%',
maxWidth: (left && right) ? '100%' : '25%',
width: (left && right) ? '100%' : '25%',
wordWrap: 'break-word'
};
}