feat: light theme code blocks

This commit is contained in:
iCrawl
2022-08-23 14:00:02 +02:00
parent 5b4672bad3
commit 28bc4f42c6
6 changed files with 32 additions and 11 deletions

View File

@@ -11,10 +11,12 @@ import { Visibility } from '~/DocModel/Visibility';
const useStyles = createStyles((theme) => ({
outer: {
display: 'flex',
alignItems: 'center',
gap: 16,
[theme.fn.smallerThan('sm')]: {
flexDirection: 'column',
alignItems: 'unset',
},
},
}));