Yaron Koresh commited on
Commit
3b90fe5
·
verified ·
1 Parent(s): fcff13b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -78,7 +78,7 @@ accu=10
78
 
79
  # ui data
80
 
81
- css="""
82
  input, input::placeholder {
83
  text-align: center !important;
84
  }
@@ -97,7 +97,7 @@ footer {
97
  max-width: 15cm;
98
  }
99
  .image-container {
100
- aspect-ratio: """+str(width)+"/"+str(height)+""" !important;
101
  }
102
  .dropdown-arrow {
103
  display: none !important;
@@ -110,7 +110,7 @@ footer {
110
  .btn {
111
  display: flex;
112
  }
113
- """
114
 
115
  js="""
116
  function custom(){
 
78
 
79
  # ui data
80
 
81
+ css="".join(["""
82
  input, input::placeholder {
83
  text-align: center !important;
84
  }
 
97
  max-width: 15cm;
98
  }
99
  .image-container {
100
+ aspect-ratio: """,str(width),"/",str(height),""" !important;
101
  }
102
  .dropdown-arrow {
103
  display: none !important;
 
110
  .btn {
111
  display: flex;
112
  }
113
+ """])
114
 
115
  js="""
116
  function custom(){