Skip to content

Commit ebd2a27

Browse files
committed
body font updates and fixed title font in app
1 parent 0d2f1cf commit ebd2a27

File tree

7 files changed

+8
-9
lines changed

7 files changed

+8
-9
lines changed

frontend/apps/artcraft-website/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<link rel="preconnect" href="https://fonts.googleapis.com" />
3535
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
3636
<link
37-
href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap"
37+
href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap"
3838
rel="stylesheet"
3939
/>
4040
</head>

frontend/apps/artcraft-website/src/styles.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
}
1414
body {
1515
font-family:
16+
"Source Sans 3",
1617
system-ui,
1718
-apple-system,
1819
BlinkMacSystemFont,

frontend/apps/artcraft/app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
3232
<link rel="preconnect" href="https://fonts.googleapis.com" />
3333
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
34-
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap"
34+
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap"
3535
rel="stylesheet" />
3636
<!-- <link rel="stylesheet" href="/src/styles.css" /> -->
3737
</head>

frontend/apps/artcraft/app/src/pages/PageImage/TextToImage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@ const TextToImage = ({ imageMediaId, imageUrl }: TextToImageProps) => {
139139
imageRowVisible && "mb-80",
140140
)}
141141
>
142-
<span className="text-7xl font-bold text-base-fg">
142+
<h1 className="text-7xl font-bold text-base-fg">
143143
Generate Image
144-
</span>
144+
</h1>
145145
<span className="pt-2 text-xl text-base-fg opacity-80">
146146
Add a prompt, then generate
147147
</span>

frontend/apps/artcraft/app/src/pages/PageVideo/ImageToVideo.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,7 @@ const ImageToVideo = ({ imageMediaId, imageUrl }: ImageToVideoProps) => {
125125
imageRowVisible && "mb-80",
126126
)}
127127
>
128-
<span className="text-7xl font-bold text-base-fg">
129-
Generate Video
130-
</span>
128+
<h1 className="text-7xl font-bold text-base-fg">Generate Video</h1>
131129
<span className="pt-2 text-xl text-base-fg opacity-80">
132130
Choose an image, add a prompt, then generate
133131
</span>

frontend/apps/artcraft/app/src/root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const links: LinksFunction = () => [
4646
},
4747
{
4848
rel: "stylesheet",
49-
href: "https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap",
49+
href: "https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap",
5050
},
5151
];
5252

frontend/apps/artcraft/app/src/styles/base.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ h6 {
4242
}
4343

4444
body {
45-
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
45+
font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
4646
color: var(--st-fg);
4747
background-color: var(--st-bg);
4848
color-scheme: var(--st-color-scheme, dark);

0 commit comments

Comments
 (0)