From 5bc4fa62efbc5b5fe93e00c2ca0fd410b8c19e7e Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Tue, 21 Mar 2023 11:31:11 +0100 Subject: [PATCH] [PM-1451] Remove unused export.module.scss (#5012) --- apps/web/src/scss/export.module.scss | 8 -------- apps/web/src/scss/export.module.scss.d.ts | 9 --------- 2 files changed, 17 deletions(-) delete mode 100644 apps/web/src/scss/export.module.scss delete mode 100644 apps/web/src/scss/export.module.scss.d.ts diff --git a/apps/web/src/scss/export.module.scss b/apps/web/src/scss/export.module.scss deleted file mode 100644 index 615a0f75d1..0000000000 --- a/apps/web/src/scss/export.module.scss +++ /dev/null @@ -1,8 +0,0 @@ -@import "variables"; - -:export { - darkInputColor: $darkInputColor; - darkInputPlaceholderColor: $darkInputPlaceholderColor; - lightInputColor: $lightInputColor; - lightInputPlaceholderColor: $lightInputPlaceholderColor; -} diff --git a/apps/web/src/scss/export.module.scss.d.ts b/apps/web/src/scss/export.module.scss.d.ts deleted file mode 100644 index 6b2c06a0c7..0000000000 --- a/apps/web/src/scss/export.module.scss.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -export interface ThemeVariableExport { - lightInputColor: string; - lightInputPlaceholderColor: string; - darkInputColor: string; - darkInputPlaceholderColor: string; -} - -export const ThemeVariables: ThemeVariableExport; -export default ThemeVariables;