Spaces:
Sleeping
Sleeping
Commit ·
cc0b687
1
Parent(s): 61153ea
logo sizing
Browse files- .chainlit/config.toml +1 -1
- public/style.css +6 -0
.chainlit/config.toml
CHANGED
|
@@ -112,7 +112,7 @@ cot = "hidden"
|
|
| 112 |
|
| 113 |
# Specify a CSS file that can be used to customize the user interface.
|
| 114 |
# The CSS file can be served from the public directory or via an external link.
|
| 115 |
-
|
| 116 |
|
| 117 |
# Specify additional attributes for a custom CSS file
|
| 118 |
# custom_css_attributes = "media=\"print\""
|
|
|
|
| 112 |
|
| 113 |
# Specify a CSS file that can be used to customize the user interface.
|
| 114 |
# The CSS file can be served from the public directory or via an external link.
|
| 115 |
+
custom_css = "public/style.css"
|
| 116 |
|
| 117 |
# Specify additional attributes for a custom CSS file
|
| 118 |
# custom_css_attributes = "media=\"print\""
|
public/style.css
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* Update the selector to match the element in the inspector */
|
| 2 |
+
img.logo {
|
| 3 |
+
width: 300px !important; /* Change 300px to your desired size */
|
| 4 |
+
height: auto !important; /* Preserves aspect ratio */
|
| 5 |
+
max-height: none !important; /* Removes any height caps */
|
| 6 |
+
}
|