Reduced the space between input fields and the tabs section

This commit is contained in:
atyabbin
2024-07-19 13:12:25 +05:30
parent 371a1805f0
commit 4c7f2c7c4e
2 changed files with 5 additions and 3 deletions

View File

@@ -322,7 +322,7 @@
flex-direction: column;
align-items: center;
width: 100%;
margin-top: 300px;
margin-top: 150px;
}
.horizontal-group {

View File

@@ -270,7 +270,8 @@ const App: React.FC = () => {
</form>
<div className="content-container">
{loading ? (
<CircularProgress sx={{ color: "black" }} />
<CircularProgress sx={{ color: "black", marginTop: "200px" }} />
) : error ? (
<div className="error-message">{error}</div>
) : fetchSuccess ? (
@@ -333,7 +334,8 @@ const App: React.FC = () => {
</Box>
</>
) : (
<img src={duckieimage} alt="duckie" />
<img src={duckieimage} alt="duckie" style={{ marginTop: "150px" }} />
)}
</div>
</div>