Skip to content

Commit 2d60cb8

Browse files
committed
Install sass npm package and rename all css files to scss
1 parent 358c413 commit 2d60cb8

File tree

14 files changed

+521
-121
lines changed

14 files changed

+521
-121
lines changed

package-lock.json

Lines changed: 514 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"jsdom": "^24.1.1",
3737
"lint-staged": "^15.2.9",
3838
"prettier": "^3.3.3",
39+
"sass-embedded": "^1.79.3",
3940
"typescript-eslint": "^8.2.0",
4041
"vite": "^5.3.5",
4142
"vite-plugin-pwa": "^0.20.1",
File renamed without changes.

src/components/AuthenticatedNavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { SignOutButton } from "../api";
44
import Navbar from "react-bootstrap/Navbar";
55
import Container from "react-bootstrap/Container";
66

7-
import "./AuthenticatedNavBar.css";
7+
import "./AuthenticatedNavBar.scss";
88

99
export function AuthenticatedNavBar() {
1010
return (
File renamed without changes.

src/components/ListItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "./ListItem.css";
1+
import "./ListItem.scss";
22
import { updateItem, deleteItem, ListItem } from "../api";
33
import { useState } from "react";
44
import toast from "react-hot-toast";
File renamed without changes.

src/components/SingleList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "./SingleList.css";
1+
import "./SingleList.scss";
22
import * as api from "../api/firebase";
33
import Button from "react-bootstrap/Button";
44

File renamed without changes.

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { BrowserRouter as Router } from "react-router-dom";
44
import { App } from "./App";
55

66
import "bootstrap/dist/css/bootstrap.min.css";
7-
import "./index.css";
7+
import "./index.scss";
88

99
const root = createRoot(document.getElementById("root") as HTMLElement);
1010
root.render(

0 commit comments

Comments
 (0)