fix: Fixed issue with checklist alignment in Super notes

This commit is contained in:
Aman Harwara
2023-11-24 22:24:30 +05:30
parent 271a83bce1
commit f6c2991f46
4 changed files with 50 additions and 35 deletions

View File

@@ -6,3 +6,13 @@ export enum EditorLineHeight {
Relaxed = 'Relaxed',
Loose = 'Loose',
}
// https://tailwindcss.com/docs/line-height
export const EditorLineHeightValues: { [key in EditorLineHeight]: number } = {
None: 1,
Tight: 1.25,
Snug: 1.375,
Normal: 1.5,
Relaxed: 1.625,
Loose: 2,
}