File tree Expand file tree Collapse file tree 3 files changed +21
-17
lines changed
common/components/modal-dialog
pods/edit-table/components Expand file tree Collapse file tree 3 files changed +21
-17
lines changed Original file line number Diff line number Diff line change 94
94
padding-top : 0 ;
95
95
padding-bottom : 4rem ;
96
96
}
97
- . info__company {
97
+ h1 {
98
98
display : flex;
99
- align-items : center;
100
- gap : 3% ;
99
+ flex-direction : column;
101
100
}
102
101
.info__company img {
103
102
width : 12% ;
104
103
height : 100% ;
105
104
margin-top : 4px ;
106
105
}
107
- .info__company h2 {
106
+ .info__company {
107
+ display : flex;
108
+ align-items : center;
109
+ gap : 3% ;
108
110
font-size : clamp (55px , 9vw , 10rem );
109
111
color : var (--accent );
110
112
background-image : linear-gradient (69deg , # 96d9ab 30% , # ffffff 75% );
304
306
width : 70px ;
305
307
margin-top : 0 ;
306
308
}
307
- .info__company h2 {
309
+ .info__company {
308
310
line-height : 1.1 ;
309
311
}
310
312
}
340
342
</ header >
341
343
< main class ="main ">
342
344
< section class ="info container ">
343
- < div class ="info__company ">
344
- < img
345
- src ="/assets/logo_mongo_modeler_dark_mode.svg "
346
- alt ="Mongo Modeler Logo "
347
- />
348
- < h2 class ="info__company "> Mongo Modeler</ h2 >
349
- </ div >
350
- < h1 class ="info__claim ">
351
- A free, online Data Modeling tool for MongoDB.
345
+ < h1 >
346
+ < span class ="info__company ">
347
+ < img
348
+ src ="/assets/logo_mongo_modeler_dark_mode.svg "
349
+ alt ="Mongo Modeler Logo "
350
+ />
351
+ Mongo Modeler</ span
352
+ >
353
+ < span class ="info__claim ">
354
+ A free, online Data Modeling tool for MongoDB.
355
+ </ span >
352
356
</ h1 >
353
357
< div class ="info__detail ">
354
358
< div class ="info__text ">
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ export const ModalDialog: React.FC = () => {
64
64
aria-labelledby = "modal-modal-title"
65
65
>
66
66
< div className = { styles . dialogHeader } >
67
- < h2 className = { styles . dialogTitle } id = "modal-modal-title" >
67
+ < h1 className = { styles . dialogTitle } id = "modal-modal-title" >
68
68
{ modalDialog . title }
69
- </ h2 >
69
+ </ h1 >
70
70
< button
71
71
className = { styles . dialogButton }
72
72
onClick = { handleClick }
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ interface Props {
36
36
}
37
37
38
38
const INPUT_NAME = 'Field for field ' ;
39
- const CHECKBOX_PK = 'Checkbox pk for field ' ;
39
+ const CHECKBOX_PK = 'Primary key for field ' ;
40
40
const CHECKBOX_FK = 'Checkbox fk for field ' ;
41
41
const CHECKBOX_ARRAY = 'Checkbox isArray for field ' ;
42
42
const CHECKBOX_ISNN = 'Checkbox isNN for field ' ;
You can’t perform that action at this time.
0 commit comments