How do I make UE editor suitable for mobile development

I am speaking specifically about the viewport.
I want to develop a mobile game that is strictly portrait.
How do I change the viewport orientation to be portrait?
I know you can change the aspect ratio of the camera to be 0.5625 but this take effect only when pressing play. I want the entire editor to be portrait.

  1. You can undock the viewport from the editor and change its size but it will be on a separate editor window.
  2. To maintain the viewport inside the main editor you’ll need to dock other tabs to the side of the viewport (like the outliner and details panel) and resize those until the viewport has the size you need.

both of this options have the downside that the viewports buttons and menus don’t have resolution awareness.

so i think the other options are:
3. Add a second viewport next to the main viewport with your desire resolution.
4. or maybe add a camera with your mobile settings and use that in the second viewport.

hope that helps

Thank you for your advice. The second viewport with camera attached sounds like what I was looking for. However, How do I set a specific resolution to the viewport?