feat(content-manager): change theme

This commit is contained in:
Simone Taeggi 2024-11-28 10:39:02 +01:00
parent a358228361
commit a2a9966703
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,5 @@
import * as React from 'react';
// Import the PrismJS theme to highlight the code
import 'prismjs/themes/prism-solarizedlight.css';
import {
Page,
Blocker,
@ -163,6 +161,8 @@ const EditViewPage = () => {
return yupSchema.validateSync(values, { abortEarly: false });
};
console.log('EditViewPage', layout);
return (
<Main paddingLeft={10} paddingRight={10}>
<Page.Title>{documentTitle}</Page.Title>

View File

@ -1,4 +1,6 @@
import * as React from 'react';
// Import the PrismJS theme to highlight the code
import 'prismjs/themes/prism.css';
import { Box, SingleSelect, SingleSelectOption } from '@strapi/design-system';
import { CodeBlock as CodeBlockIcon } from '@strapi/icons';