File tree 4 files changed +23
-12
lines changed
4 files changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ export const MainPage = () => {
45
45
onChange = { ( value ) => handleTabChange ( value ) }
46
46
/>
47
47
< main className = { styles . main } > { components [ currentTabValue ] . render } </ main >
48
+ < div className = { styles . dock } > </ div >
48
49
</ div >
49
50
) ;
50
51
} ;
Original file line number Diff line number Diff line change 5
5
}
6
6
7
7
.main {
8
- display : flex;
9
- align-items : center;
10
- gap : 20px ;
11
8
height : 100% ;
9
+ overflow : auto;
10
+ }
11
+
12
+ .dock {
12
13
}
Original file line number Diff line number Diff line change @@ -8,13 +8,15 @@ import { ParagraphConstructor } from "@/shared/paragraphConstructor";
8
8
export const Hello = ( ) => {
9
9
return (
10
10
< section className = { styles . hello } >
11
- < div className = { styles . title } >
12
- < HelloTitle text = "Иван Стрилец" />
13
- < HelloSubtitle text = "//Делаю работу" />
14
- < HelloSubtitle text = "Качественно" isAccented />
15
- </ div >
16
- < div className = { styles . text } >
17
- < ParagraphConstructor rows = { aboutTextStub } />
11
+ < div className = { styles . content } >
12
+ < div className = { styles . title } >
13
+ < HelloTitle text = "Иван Стрилец" />
14
+ < HelloSubtitle text = "//Делаю работу" />
15
+ < HelloSubtitle text = "Качественно" isAccented />
16
+ </ div >
17
+ < div className = { styles . text } >
18
+ < ParagraphConstructor rows = { aboutTextStub } />
19
+ </ div >
18
20
</ div >
19
21
</ section >
20
22
) ;
Original file line number Diff line number Diff line change 1
1
.hello {
2
+ display : flex;
3
+ align-items : center;
4
+ justify-content : center;
5
+ gap : 20px ;
6
+ min-height : 100% ;
7
+ }
8
+
9
+ .content {
2
10
display : flex;
3
11
flex-direction : column;
4
12
justify-content : center;
13
+ min-height : 100% ;
5
14
gap : 48px ;
6
- height : 100% ;
7
15
padding : 16px ;
8
- margin : 0 auto;
9
16
10
17
@media screen and (min-width : 1200px ) {
11
18
display : grid;
You can’t perform that action at this time.
0 commit comments