How do I increase width of main coding space? #2630
Answered
by
holomorphism
lazylavenders
asked this question in
Questions about using Pluto
-
Beta Was this translation helpful? Give feedback.
Answered by
holomorphism
Aug 22, 2023
Replies: 1 comment
-
For cell widths, see issues #400 and #748, for example. Currently, you can customize the style and increase the width by adding the following cells to the notebook. html"""
<style>
main {
max-width: calc(100vw - 80px);
align-self: flex-start !important;
margin-left: 30px !important;
}
</style>
""" As for the side-by-side view of the code, this may not be what you intended, but it is quite convenient to work with the same notebook open in two browser windows. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
lazylavenders
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For cell widths, see issues #400 and #748, for example.
(Theme customization feature has not yet been implemented.)
Currently, you can customize the style and increase the width by adding the following cells to the notebook.
(If the right margin is too narrow to manipulate, increase the 80px value)
As for the side-by-side view of the code, this may not be what you intended, but it is quite convenient to work with the same notebook open in two browser windows.