openfree commited on
Commit
e5b4510
1 Parent(s): 6c5d35c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -9
app.py CHANGED
@@ -796,33 +796,35 @@ input:focus, textarea:focus {
796
  #result_column, #result_column > div {
797
  display: flex !important;
798
  flex-direction: column !important;
799
- align-items: center !important;
800
  width: 100% !important;
801
- margin: 0 auto !important;
802
  }
803
 
804
  .generated-image, .generated-image > div {
805
  display: flex !important;
806
- justify-content: center !important;
807
- align-items: center !important;
808
  width: 90% !important;
809
  max-width: 768px !important;
810
- margin: 0 auto !important;
 
811
  }
812
 
813
  .generated-image img {
814
- margin: 0 auto !important;
815
  display: block !important;
816
  max-width: 100% !important;
817
  }
818
 
819
- /* 히스토리 갤러리 */
820
  .history-gallery {
821
  display: flex !important;
822
- justify-content: center !important;
823
  width: 90% !important;
824
  max-width: 90% !important;
825
- margin: 0 auto !important;
 
826
  }
827
  '''
828
 
 
796
  #result_column, #result_column > div {
797
  display: flex !important;
798
  flex-direction: column !important;
799
+ align-items: flex-start !important; /* center에서 flex-start로 변경 */
800
  width: 100% !important;
801
+ margin: 0 !important; /* auto에서 0으로 변경 */
802
  }
803
 
804
  .generated-image, .generated-image > div {
805
  display: flex !important;
806
+ justify-content: flex-start !important; /* center에서 flex-start로 변경 */
807
+ align-items: flex-start !important; /* center에서 flex-start로 변경 */
808
  width: 90% !important;
809
  max-width: 768px !important;
810
+ margin: 0 !important; /* auto에서 0으로 변경 */
811
+ margin-left: 20px !important; /* 왼쪽 여백 추가 */
812
  }
813
 
814
  .generated-image img {
815
+ margin: 0 !important; /* auto에서 0으로 변경 */
816
  display: block !important;
817
  max-width: 100% !important;
818
  }
819
 
820
+ /* 히스토리 갤러리도 좌측 정렬로 변경 */
821
  .history-gallery {
822
  display: flex !important;
823
+ justify-content: flex-start !important; /* center에서 flex-start로 변경 */
824
  width: 90% !important;
825
  max-width: 90% !important;
826
+ margin: 0 !important; /* auto에서 0으로 변경 */
827
+ margin-left: 20px !important; /* 왼쪽 여백 추가 */
828
  }
829
  '''
830