mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-21 22:19:41 +01:00
15 lines
272 B
JavaScript
15 lines
272 B
JavaScript
|
|
export const margins = {
|
||
|
|
0: 0,
|
||
|
|
1: 12,
|
||
|
|
2: 20
|
||
|
|
};
|
||
|
|
|
||
|
|
export const getStyle = style => {
|
||
|
|
if (!style) return {};
|
||
|
|
return {
|
||
|
|
marginTop: margins[style.marginTop] || 0,
|
||
|
|
marginBottom: margins[style.marginBottom] || 0,
|
||
|
|
textAlign: style.textAlign || 'left'
|
||
|
|
};
|
||
|
|
};
|