mirror of
https://github.com/tomru/lt-35c3.git
synced 2026-03-02 22:17:24 +01:00
26 lines
579 B
JavaScript
26 lines
579 B
JavaScript
import { dark as theme } from 'mdx-deck/themes'
|
|
|
|
export default {
|
|
...theme,
|
|
fontSizes: [
|
|
'0.75em', '1em', '1.3em', '1.7em', '2.5em'
|
|
],
|
|
css: {
|
|
...theme.css,
|
|
'li > ul, li > ol': {
|
|
fontSize: 'inherit',
|
|
},
|
|
'li > p': {
|
|
fontSize: 'inherit',
|
|
margin: 0,
|
|
},
|
|
},
|
|
|
|
// Customize your presentation theme here.
|
|
//
|
|
// Read the docs for more info:
|
|
// https://github.com/jxnblk/mdx-deck/blob/master/docs/theming.md
|
|
// https://github.com/jxnblk/mdx-deck/blob/master/docs/themes.md
|
|
|
|
}
|