Skip to content

Commit

Permalink
Merge pull request #21 from webrecorder/fix-build
Browse files Browse the repository at this point in the history
Fix build
  • Loading branch information
SuaYoo authored Oct 29, 2024
2 parents 198c8c5 + b0d5d83 commit 772a177
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/archive-now.stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
--sl-color-primary-400: theme(colors.cyan.400);
--sl-color-primary-500: theme(colors.cyan.500);
--sl-color-primary-600: theme(colors.cyan.600);
--sl-color-primary-700: theme(colors.cyan.700.DEFAULT);
--sl-color-primary-700: theme(colors.cyan.700);
--sl-color-primary-800: theme(colors.cyan.800);
--sl-color-primary-900: theme(colors.cyan.900);
}
Expand Down
4 changes: 4 additions & 0 deletions src/files.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ declare module "*.avif" {
const src: string;
export default src;
}
declare module "*.svg" {
const src: string;
export default src;
}
declare module "*.css" {
const contents: string;
export default contents;
Expand Down

0 comments on commit 772a177

Please sign in to comment.