CMS admin panel

Hi does someone had problem that Content/Media bar comes over the preview?
Here is admin code->


import dynamic from ‘next/dynamic’;
import { LunchListPreview } from ‘…/components/previews/LunchListPreview’;

const AdminWithNoSSR = dynamic(
() =>
import(‘netlify-cms-app’).then((CMS: any) => {
CMS.registerPreviewStyle(’/admin/main.css’);
CMS.registerPreviewTemplate(‘lunchList’, LunchListPreview);
CMS.init();
}) as any,
{ ssr: false }
);
const AdminPage: React.FC = () => {
return (
<>

</>
);
};
export default AdminPage;


and here it is how it looks in browser

As in styling I use Tailwind
How to get panel away top of preview?

Hi there! Thanks for your interest in Netlify CMS. Looks like you posted your question a few dats ago, but that you haven’t received a solution yet. Here’s where you might get more help:

netlifycms.org - the site houses our extensive documentation that likely contains helpful information to get you back on track.

netlify cms slack - join our friendly slack channel and chat with other cms pros to get the help you need.

GitHub Issues - think you’ve found a bug, or would like to make a feature request? Make your voice heard here. Netlify CMS is open source - PRs and other contributions are also welcome!

Stack Overflow Check StackOverflow for questions tagged “Netlify CMS” if you don’t get an answer in the Slack or the GH issues. StackOverflow reaches a worldwide audience of knowledgeable people.

Your question will be left open here for anyone to comment - but we encourage you to check out the above resources if you are still looking for a solution!