Skip to content

Commit 20c189b

Browse files
committed
πŸ’„ style(css): remove redundant padding and add global reset
- remove unnecessary padding-bottom in ContactSection for cleaner layout - add margin and padding reset in index.css for consistent styling across browsers
1 parent 2b98add commit 20c189b

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

β€Žsrc/components/Section/ContactSection/index.module.cssβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
justify-content: center;
88
justify-content: space-evenly;
99
gap: 2rem;
10-
padding-bottom: 2rem;
1110

1211
> a {
1312
width: 100%;

β€Žsrc/index.cssβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
font-weight: 400;
88

99
color-scheme: light dark;
10-
color: rgba(255, 255, 255, 0.87);
11-
background-color: #242424;
1210

1311
font-synthesis: none;
1412
text-rendering: optimizeLegibility;
1513
-webkit-font-smoothing: antialiased;
1614
-moz-osx-font-smoothing: grayscale;
15+
margin: 0;
16+
padding: 0;
1717
}
1818

1919
body {

0 commit comments

Comments
Β (0)