Spaces:
Runtime error
Runtime error
Allen Park
commited on
Commit
·
8de2cbd
1
Parent(s):
1c92944
fix(add padding and gap to example button & font-size from .75rem -> 1rem)
Browse files
app.py
CHANGED
|
@@ -105,8 +105,11 @@ UPLOADABLE_FILE_TYPES = [".pdf", ".txt", ".docx", ".doc"]
|
|
| 105 |
|
| 106 |
css = """
|
| 107 |
.example-button {
|
| 108 |
-
font-size:
|
| 109 |
font-weight: 400 !important;
|
|
|
|
|
|
|
|
|
|
| 110 |
}
|
| 111 |
"""
|
| 112 |
|
|
|
|
| 105 |
|
| 106 |
css = """
|
| 107 |
.example-button {
|
| 108 |
+
font-size: 1rem;
|
| 109 |
font-weight: 400 !important;
|
| 110 |
+
display: flex;
|
| 111 |
+
gap: 1rem;
|
| 112 |
+
padding: 1rem;
|
| 113 |
}
|
| 114 |
"""
|
| 115 |
|