File tree Expand file tree Collapse file tree 4 files changed +33
-3
lines changed
Expand file tree Collapse file tree 4 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 1616 background : linear-gradient (
1717 to right ,
1818 transparent 0% ,
19- rgba (129 128 128 ) 50% ,
19+ rgb (129 128 128 ) 50% ,
2020 transparent 100%
2121 );
2222 content : " " ;
Original file line number Diff line number Diff line change 1010 justify-content : flex-start ;
1111}
1212
13+ <<<<<<< HEAD
1314.justify_center {
1415 justify-content : center ;
1516}
1920}
2021
2122.justify_between {
23+ =======
24+ .justifyCenter {
25+ justify-content : center ;
26+ }
27+
28+ .justifyEnd {
29+ justify-content : flex-end ;
30+ }
31+
32+ .justifyBetween {
33+ >>>>>>> 49a 49fd (fix : client lint error)
2234 justify-content : space-between ;
2335}
2436
2537.align_start {
2638 align-items : flex-start ;
2739}
2840
41+ <<<<<<< HEAD
2942.align_center {
3043 align-items : center ;
3144}
3245
3346.align_end {
47+ =======
48+ .alignCenter {
49+ align-items : center ;
50+ }
51+
52+ .alignEnd {
53+ >>>>>>> 49a 49fd (fix : client lint error)
3454 align-items : flex-end ;
3555}
3656
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export const AsideMenu = memo((props: AsideMenuProps) => {
6262 alt = 'avatar'
6363 />
6464 < Typography tag = 'h2' variant = 'bold_20' type = 'title' >
65- Alex Hexxx
65+ Alex Hex
6666 </ Typography >
6767 < Typography tag = 'h4' variant = 'medium_16' type = 'title' >
6868
Original file line number Diff line number Diff line change 1-
1+ #! /bin/sh
2+ set -e
3+
4+ echo " [DEBUG] Waiting for postgres (sleeping 5s)..."
5+ sleep 5
6+
7+ echo " [DEBUG] Start prisma migration"
8+ npx prisma migrate deploy
9+
10+ echo " [DEBUG] Starting application..."
11+ exec node dist/src/main.js
You can’t perform that action at this time.
0 commit comments