Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
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:
|
| 800 |
width: 100% !important;
|
| 801 |
-
margin: 0
|
| 802 |
}
|
| 803 |
|
| 804 |
.generated-image, .generated-image > div {
|
| 805 |
display: flex !important;
|
| 806 |
-
justify-content:
|
| 807 |
-
align-items:
|
| 808 |
width: 90% !important;
|
| 809 |
max-width: 768px !important;
|
| 810 |
-
margin: 0
|
|
|
|
| 811 |
}
|
| 812 |
|
| 813 |
.generated-image img {
|
| 814 |
-
margin: 0
|
| 815 |
display: block !important;
|
| 816 |
max-width: 100% !important;
|
| 817 |
}
|
| 818 |
|
| 819 |
-
/* 히스토리
|
| 820 |
.history-gallery {
|
| 821 |
display: flex !important;
|
| 822 |
-
justify-content:
|
| 823 |
width: 90% !important;
|
| 824 |
max-width: 90% !important;
|
| 825 |
-
margin: 0
|
|
|
|
| 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 |
|