Upload folder using huggingface_hub
Browse files- client/src/index.css +7 -0
client/src/index.css
CHANGED
|
@@ -195,6 +195,13 @@ html.is-chrome body, html.is-chrome #root {
|
|
| 195 |
html.is-chrome { font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif; }
|
| 196 |
html.is-chrome body { font-weight: 400; }
|
| 197 |
html.is-chrome h1, html.is-chrome h2, html.is-chrome h3 { font-weight: 600; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 198 |
/* Disable content-visibility on the app shell in Chrome to avoid clipping fixed/sticky children */
|
| 199 |
html.is-chrome .app-shell { content-visibility: visible; contain-intrinsic-size: auto; }
|
| 200 |
|
|
|
|
| 195 |
html.is-chrome { font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif; }
|
| 196 |
html.is-chrome body { font-weight: 400; }
|
| 197 |
html.is-chrome h1, html.is-chrome h2, html.is-chrome h3 { font-weight: 600; }
|
| 198 |
+
/* Match Safari font rendering behavior in Chrome */
|
| 199 |
+
html.is-chrome, html.is-chrome body, html.is-chrome h1, html.is-chrome h2, html.is-chrome h3, html.is-chrome p,
|
| 200 |
+
html.is-chrome .font-smiley, html.is-chrome .font-source-text, html.is-chrome .text-ui-text {
|
| 201 |
+
-webkit-font-smoothing: antialiased;
|
| 202 |
+
text-rendering: optimizeLegibility;
|
| 203 |
+
font-synthesis: none; /* avoid synthetic bold/italic differences */
|
| 204 |
+
}
|
| 205 |
/* Disable content-visibility on the app shell in Chrome to avoid clipping fixed/sticky children */
|
| 206 |
html.is-chrome .app-shell { content-visibility: visible; contain-intrinsic-size: auto; }
|
| 207 |
|