Add box shadow
Browse files
src/display/css_html_js.py
CHANGED
@@ -233,7 +233,10 @@ custom_css = """
|
|
233 |
}
|
234 |
|
235 |
.intro-block {
|
236 |
-
|
|
|
|
|
|
|
237 |
}
|
238 |
|
239 |
.header-row {
|
|
|
233 |
}
|
234 |
|
235 |
.intro-block {
|
236 |
+
background-color: #f5f5f5;
|
237 |
+
padding: 1.5rem;
|
238 |
+
border-radius: 10px;
|
239 |
+
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
|
240 |
}
|
241 |
|
242 |
.header-row {
|