@atlaskit/editor-common
Version:
A package that contains common classes and components for editor and renderer
15 lines (14 loc) • 592 B
JavaScript
import { css } from '@emotion/react';
import { akEditorLineHeight, blockNodesVerticalMargin } from '@atlaskit/editor-shared-styles';
// @see typography spreadsheet: https://docs.google.com/spreadsheets/d/1iYusRGCT4PoPfvxbJ8NrgjtfFgXLm5lpDWXzjua1W2E/edit#gid=93913128
export var paragraphSharedStyles = css({
'& p': {
fontSize: '1em',
lineHeight: akEditorLineHeight,
fontWeight: 'normal',
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage/preview
marginTop: blockNodesVerticalMargin,
marginBottom: 0,
letterSpacing: '-0.005em'
}
});