Reduce large margins and padding for team information section

Adjusted CSS in `static/css/styles.css` to decrease top and bottom margins and padding for the `.team-info` element, specifically reducing values from 64px to 32px and setting `padding-top` to 0.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 5e584ab0-c340-4432-97ef-1972582b60e9
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 1a40fa59-817b-4992-b3c5-1426ea347ecf
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/d0a1d46d-d203-4308-bc6a-312ac7c0243b/5e584ab0-c340-4432-97ef-1972582b60e9/VFnBJFj
This commit is contained in:
abhiramtx
2025-11-08 23:42:47 +00:00
parent 955937d007
commit cc777b8d44
2 changed files with 3 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

View File

@@ -304,8 +304,8 @@ hr {
.team-info { .team-info {
width: 90%; width: 90%;
max-width: 1200px; max-width: 1200px;
margin: 40px auto 64px auto; margin: 0 auto 32px auto;
padding-bottom: 64px; padding-bottom: 32px;
color: var(--white); color: var(--white);
position: relative; position: relative;
} }
@@ -348,7 +348,7 @@ hr {
} }
.team-info { .team-info {
padding-top: 64px; padding-top: 0;
} }
.sub-header { .sub-header {