Skip to content

Commit c6e5eaa

Browse files
Revert "fix: resolve resume builder styling issues"
This reverts commit 2b27180.
1 parent 2b27180 commit c6e5eaa

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

src/app/resume/edit/resume-builder.css

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,6 @@ input:focus {
9999
.f-col {
100100
display: flex;
101101
flex-direction: column;
102-
gap: 1rem;
103-
}
104-
105-
@media (min-width: 768px) {
106-
.f-col {
107-
flex-direction: row;
108-
}
109102
}
110103

111104
.grid-4 {

src/app/resume/layout.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ export default function ResumeLayout({
1414
<div style={{
1515
minHeight: '100vh',
1616
backgroundColor: '#ffffff',
17-
position: 'relative',
17+
position: 'fixed',
18+
top: 0,
19+
left: 0,
20+
right: 0,
21+
bottom: 0,
1822
zIndex: 1,
19-
color: '#000000',
20-
fontFamily: 'sans-serif',
23+
overflow: 'auto'
2124
}}>
2225
{children}
2326
</div>

0 commit comments

Comments
 (0)