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

update: alignment, width, colour

Browse files
Files changed (1) hide show
  1. app.py +8 -5
app.py CHANGED
@@ -78,23 +78,26 @@ body {
78
  margin: 0; /* Remove default margin */
79
  overflow-y: auto; /* Allow vertical scrolling if needed */
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
 
100
 
 
78
  margin: 0; /* Remove default margin */
79
  overflow-y: auto; /* Allow vertical scrolling if needed */
80
  }
81
+
82
  .custom-row {
83
  display: flex;
84
  justify-content: center; /* Align horizontally */
85
  align-items: center; /* Align vertically */
86
+ padding: 10px; /* Adjust as needed for spacing */
87
  }
88
 
89
  .custom-button {
90
+ background-color: #800000;
91
  color: white;
92
  font-size: 12px; /* Smaller font size */
93
+ width: auto; /* Automatically fit content */
94
+ min-width: 80px; /* Set a minimum width */
95
+ height: 35px; /* Reduced height */
96
  border-radius: 6px; /* Slightly rounded corners */
97
+ padding: 0 10px; /* Add horizontal padding for content */
98
  cursor: pointer;
 
99
  text-align: center;
100
+ display: inline-block; /* Ensure proper sizing */
101
  }
102
 
103