DawnC commited on
Commit
e7a05a8
1 Parent(s): 0f3c00d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py CHANGED
@@ -632,6 +632,15 @@ async def predict(image):
632
  border: 1px solid #e1e4e8; /* 添加邊框 */
633
  fontsize: 1.1rem;
634
  }}
 
 
 
 
 
 
 
 
 
635
 
636
  .action-section {{
637
  margin-top: 24px;
@@ -746,6 +755,19 @@ async def predict(image):
746
  .breed-content {{
747
  padding: 20px;
748
  }}
 
 
 
 
 
 
 
 
 
 
 
 
 
749
 
750
  ul {{
751
  padding-left: 0;
 
632
  border: 1px solid #e1e4e8; /* 添加邊框 */
633
  fontsize: 1.1rem;
634
  }}
635
+
636
+ .description-section p {{
637
+ margin: 0;
638
+ padding: 0;
639
+ text-align: justify; /* 文字兩端對齊 */
640
+ word-wrap: break-word; /* 確保長單字會換行 */
641
+ white-space: pre-line; /* 保留換行但合併空白 */
642
+ max-width: 100%; /* 確保不會超出容器 */
643
+ }}
644
 
645
  .action-section {{
646
  margin-top: 24px;
 
755
  .breed-content {{
756
  padding: 20px;
757
  }}
758
+
759
+ .breed-content li {{
760
+ margin-bottom: 8px;
761
+ display: flex;
762
+ align-items: flex-start; /* 改為頂部對齊 */
763
+ gap: 8px;
764
+ flex-wrap: wrap; /* 允許內容換行 */
765
+ }}
766
+
767
+ .breed-content li strong {{
768
+ flex: 0 0 auto; /* 不讓標題縮放 */
769
+ min-width: 100px; /* 給標題一個固定最小寬度 */
770
+ }}
771
 
772
  ul {{
773
  padding-left: 0;