Dear all,
Is there a way to drag and expand or just increase the default width of tina slide out editor?
Cheers
Dear all,
Is there a way to drag and expand or just increase the default width of tina slide out editor?
Cheers
Hey! Through your site’s global CSS you can customize a number of Tina style settings. To change the sidebar width, set the --tina-sidebar-width
custom property to your desired width. Here’s an example in Next.js:
<style jsx global>{`
:root {
--tina-sidebar-width: 500px;
}
`}</style>
Thanks a million buddy, it worked !!!.
Would there be an easy way make the editor drag-to-expand?
There have been some ideas around that, feel free to comment on this issue if you have feedback or want to look into opening a PR!