Spaces:
Sleeping
Sleeping
update: run button size
Browse files
app.py
CHANGED
@@ -80,20 +80,20 @@ body {
|
|
80 |
}
|
81 |
.custom-row {
|
82 |
display: flex;
|
83 |
-
justify-content: center;
|
84 |
-
align-items: center;
|
85 |
-
padding:
|
86 |
}
|
87 |
|
88 |
.custom-button {
|
89 |
background-color: #6a1b9a;
|
90 |
color: white;
|
91 |
-
font-size:
|
92 |
-
width:
|
93 |
-
height:
|
94 |
-
border-radius:
|
95 |
cursor: pointer;
|
96 |
-
margin: 0
|
97 |
text-align: center;
|
98 |
}
|
99 |
|
|
|
80 |
}
|
81 |
.custom-row {
|
82 |
display: flex;
|
83 |
+
justify-content: center; /* Align horizontally */
|
84 |
+
align-items: center; /* Align vertically */
|
85 |
+
padding: 10px; /* Reduced padding for a smaller layout */
|
86 |
}
|
87 |
|
88 |
.custom-button {
|
89 |
background-color: #6a1b9a;
|
90 |
color: white;
|
91 |
+
font-size: 12px; /* Smaller font size */
|
92 |
+
width: 80px; /* Reduced width */
|
93 |
+
height: 30px; /* Reduced height */
|
94 |
+
border-radius: 6px; /* Slightly rounded corners */
|
95 |
cursor: pointer;
|
96 |
+
margin: 0; /* No extra margin around the button */
|
97 |
text-align: center;
|
98 |
}
|
99 |
|