Skip to content

Commit

Permalink
Merge pull request #24 from Strong-Potato/Hotfix-replace-import-sass
Browse files Browse the repository at this point in the history
Hotfix: replace importing sass/index.tsx
  • Loading branch information
NamgungJongMin authored Jan 5, 2024
2 parents b3dcb87 + 9c5a2ec commit 9404fa7
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 27 deletions.
2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { BrowserRouter } from "react-router-dom";

import "./sass/index.scss";

import MainRouter from "./routes/MainRouter/MainRouter";

const queryClient = new QueryClient();
Expand Down
4 changes: 1 addition & 3 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ import React from "react";
import ReactDOM from "react-dom/client";
import { RecoilRoot } from "recoil";

import "./sass/index.scss";
import { customTheme } from "./sass/chakraCustomTheme.tsx";

import App from "./App.tsx";
import { customTheme } from "./sass/chakraCustomTheme.tsx";

async function enableMocking() {
if (import.meta.env.MODE !== "development") {
Expand Down
24 changes: 12 additions & 12 deletions src/sass/abstracts/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,18 @@ $typography-font-size-map: (
);

$typography-font-weight-map: (
"headline": bold,
"titleLarge": bold,
"titleMedium": bold,
"titleSmall": bold,
"subTitle": medium,
"bodyLarge": normal,
"bodySmall": normal,
"button": bold,
"tabLabel": medium,
"captionLarge": medium,
"captionMidium": bold,
"captionSmall": medium,
"headline": 700,
"titleLarge": 700,
"titleMedium": 700,
"titleSmall": 700,
"subTitle": 500,
"bodyLarge": 400,
"bodySmall": 400,
"button": 700,
"tabLabel": 500,
"captionLarge": 500,
"captionMidium": 700,
"captionSmall": 500,
);

$typography-line-height-map: (
Expand Down
28 changes: 16 additions & 12 deletions src/sass/chakraCustomTheme.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import { extendTheme } from "@chakra-ui/react";

export const customTheme = extendTheme({
fonts: {
heading: `'suit', sans-serif`,
body: `'suit', sans-serif`,
},
colors: {
primary: {
100: "#d4e8ff",
Expand Down Expand Up @@ -77,18 +81,18 @@ export const customTheme = extendTheme({

//$typography-font-weight-map
fontWeights: {
headline: "bold",
titleLarge: "bold",
titleMedium: "bold",
titleSmall: "bold",
subTitle: "medium",
bodyLarge: "normal",
bodySmall: "normal",
button: "bold",
tabLabel: "medium",
captionLarge: "medium",
captionMedium: "bold",
captionSmall: "medium",
headline: "700",
titleLarge: "700",
titleMedium: "700",
titleSmall: "700",
subTitle: "500",
bodyLarge: "400",
bodySmall: "400",
button: "700",
tabLabel: "500",
captionLarge: "500",
captionMedium: "700",
captionSmall: "500",
},

//$typography-line-height-map
Expand Down

0 comments on commit 9404fa7

Please sign in to comment.