design: remove margin for li and remove a little bit of line height to make them closer to each other

This commit is contained in:
Julien Calixte
2025-01-01 22:27:03 +01:00
parent a5fdd9d2c7
commit ad67ceb062

View File

@@ -30,7 +30,7 @@ module.exports = {
typography: () => ({ typography: () => ({
DEFAULT: { DEFAULT: {
css: { css: {
'font-size': '12pt', 'font-size': '13pt',
'font-family': '"Courier Prime", monospace', 'font-family': '"Courier Prime", monospace',
...defaultTitleStyles, ...defaultTitleStyles,
p: { p: {
@@ -49,6 +49,10 @@ module.exports = {
}, },
'a:hover': { 'a:hover': {
'text-decoration': 'underline' 'text-decoration': 'underline'
},
li: {
'margin-top': 0,
'margin-bottom': 0
} }
} }
} }