BhumikaMak commited on
Commit
ae8147d
·
verified ·
1 Parent(s): 69d0ea0

update: run button size

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -80,20 +80,20 @@ body {
80
  }
81
  .custom-row {
82
  display: flex;
83
- justify-content: center;
84
- align-items: center; /* Ensure vertical centering */
85
- padding: 20px;
86
  }
87
 
88
  .custom-button {
89
  background-color: #6a1b9a;
90
  color: white;
91
- font-size: 14px;
92
- width: 120px;
93
- height: 40px; /* Ensures consistent height */
94
- border-radius: 8px;
95
  cursor: pointer;
96
- margin: 0 auto; /* Center button within its parent container */
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