We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b27180 commit c6e5eaaCopy full SHA for c6e5eaa
src/app/resume/edit/resume-builder.css
@@ -99,13 +99,6 @@ input:focus {
99
.f-col {
100
display: flex;
101
flex-direction: column;
102
- gap: 1rem;
103
-}
104
-
105
-@media (min-width: 768px) {
106
- .f-col {
107
- flex-direction: row;
108
- }
109
}
110
111
.grid-4 {
src/app/resume/layout.tsx
@@ -14,10 +14,13 @@ export default function ResumeLayout({
14
<div style={{
15
minHeight: '100vh',
16
backgroundColor: '#ffffff',
17
- position: 'relative',
+ position: 'fixed',
18
+ top: 0,
19
+ left: 0,
20
+ right: 0,
21
+ bottom: 0,
22
zIndex: 1,
- color: '#000000',
- fontFamily: 'sans-serif',
23
+ overflow: 'auto'
24
}}>
25
{children}
26
</div>
0 commit comments