UNPKG

@atlaskit/renderer

Version:
10 lines 590 B
import { akEditorFullPageDefaultFontSize, akEditorFullPageDenseFontSize } from '@atlaskit/editor-shared-styles'; import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals'; export var getBaseFontSize = function getBaseFontSize(appearance, contentMode) { if (expValEquals('confluence_compact_text_format', 'isEnabled', true) || expValEquals('cc_editor_ai_content_mode', 'variant', 'test')) { if (contentMode === 'compact') { return akEditorFullPageDenseFontSize; } } return appearance && appearance !== 'comment' ? akEditorFullPageDefaultFontSize : 14; };