.app { display: flex; flex-direction: column; width: 85%; /* Set the width to 75% of the screen width */ height: 100vh; margin: 0 auto; /* Center the app horizontally */ } .top, .bottom { flex: 1; display: flex; align-items: center; justify-content: center; background-color: #f0f0f0; /* Add margin to create space on top and bottom */ } .middle { flex: 7; /* 70% */ background-color: #e0e0e0; overflow-y: auto; margin-top: 3px; margin-bottom: 3px; /* Add margin to create space on top and bottom */ } .component { margin: 10px; /* Add margin to create space around components */ } import React from "react"; import "./App.css"; function App() { return (
15%
{/* Add your components here */} {/* Add more components as needed */}
15%
); } function Component1() { return
Component 1
; } function Component2() { return
Component 2
; } export default App;