Upload folder using huggingface_hub
Browse files- client/public/index.html +7 -0
- client/src/index.css +1 -5
client/public/index.html
CHANGED
|
@@ -14,6 +14,13 @@
|
|
| 14 |
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png" />
|
| 15 |
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
| 16 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
@font-face {
|
| 18 |
font-family: 'Apocalypse13';
|
| 19 |
src: url('%PUBLIC_URL%/fonts/Apocalypse13.otf') format('opentype');
|
|
|
|
| 14 |
<link rel="icon" type="image/png" sizes="16x16" href="%PUBLIC_URL%/favicon-16x16.png" />
|
| 15 |
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
| 16 |
<style>
|
| 17 |
+
/* Base font stack to match Safari across browsers */
|
| 18 |
+
html, body, #root {
|
| 19 |
+
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
|
| 20 |
+
-webkit-font-smoothing: antialiased;
|
| 21 |
+
-moz-osx-font-smoothing: grayscale;
|
| 22 |
+
text-rendering: optimizeLegibility;
|
| 23 |
+
}
|
| 24 |
@font-face {
|
| 25 |
font-family: 'Apocalypse13';
|
| 26 |
src: url('%PUBLIC_URL%/fonts/Apocalypse13.otf') format('opentype');
|
client/src/index.css
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
|
| 5 |
@layer base {
|
| 6 |
html {
|
| 7 |
-
font-family:
|
| 8 |
}
|
| 9 |
body {
|
| 10 |
@apply bg-ui-bg text-ui-text;
|
|
@@ -109,10 +109,6 @@
|
|
| 109 |
html.is-chrome body, html.is-chrome #root {
|
| 110 |
will-change: scroll-position;
|
| 111 |
scroll-behavior: smooth;
|
| 112 |
-
-webkit-font-smoothing: auto;
|
| 113 |
-
font-smooth: auto;
|
| 114 |
-
text-rendering: optimizeLegibility;
|
| 115 |
-
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
| 116 |
}
|
| 117 |
html.is-chrome .app-shell { content-visibility: auto; contain-intrinsic-size: 1000px 2000px; }
|
| 118 |
|
|
|
|
| 4 |
|
| 5 |
@layer base {
|
| 6 |
html {
|
| 7 |
+
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
|
| 8 |
}
|
| 9 |
body {
|
| 10 |
@apply bg-ui-bg text-ui-text;
|
|
|
|
| 109 |
html.is-chrome body, html.is-chrome #root {
|
| 110 |
will-change: scroll-position;
|
| 111 |
scroll-behavior: smooth;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
}
|
| 113 |
html.is-chrome .app-shell { content-visibility: auto; contain-intrinsic-size: 1000px 2000px; }
|
| 114 |
|