Skip to content

Commit

Permalink
scss
Browse files Browse the repository at this point in the history
  • Loading branch information
cecoeco committed Nov 11, 2024
1 parent db28195 commit 3a6eb53
Show file tree
Hide file tree
Showing 20 changed files with 468 additions and 10 deletions.
457 changes: 457 additions & 0 deletions app/package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "4.3.1",
"sass": "^1.77.8",
"typescript": "5.5.3",
"vite": "5.4.6",
"vite-plugin-svgr": "4.2.0"
Expand Down
3 changes: 0 additions & 3 deletions app/src/frontend/assets/css/index.css

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions app/src/frontend/assets/scss/index.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@import "themes.scss";
@import "fonts.scss";
@import "app.scss";
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion app/src/frontend/components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "../assets/css/footer.css";
import "../assets/scss/footer.scss";

const Footer: React.FC = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion app/src/frontend/components/header.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState, useEffect } from "react";
import { NavLink } from "react-router-dom";
import "../assets/css/header.css";
import "../assets/scss/header.scss";

import Logo from "../assets/svgs/logo.svg?react";
import GitHub from "../assets/svgs/github.svg?react";
Expand Down
2 changes: 1 addition & 1 deletion app/src/frontend/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ReactDOM from "react-dom/client";
import App from "./app.tsx";
import "./assets/css/index.css";
import "./assets/scss/index.scss";

const container = document.getElementById("root") as HTMLElement;
if (!container) throw new Error("Root container missing in index.html");
Expand Down
2 changes: 1 addition & 1 deletion app/src/frontend/pages/checklist.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { ChangeEvent, DragEvent, useRef, useState } from "react";

import "../assets/css/checklist.css";
import "../assets/scss/checklist.scss";

import Cloud from "../assets/svgs/cloud.svg?react";
import CircleX from "../assets/svgs/circle-x.svg?react";
Expand Down
2 changes: 1 addition & 1 deletion app/src/frontend/pages/flow_diagram.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState, useEffect } from "react";

import "../assets/css/flow_diagram.css";
import "../assets/scss/flow_diagram.scss";

import Download from "../assets/svgs/download.svg?react";
import Reset from "../assets/svgs/reset.svg?react";
Expand Down
2 changes: 1 addition & 1 deletion app/src/frontend/pages/home.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "../assets/css/home.css";
import "../assets/scss/home.scss";

const Home: React.FC = () => {
async function downloadChecklistTemplate() {
Expand Down
2 changes: 1 addition & 1 deletion app/src/frontend/pages/notfound.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "../assets/css/notfound.css";
import "../assets/scss/notfound.scss";

const NotFound: React.FC = () => {
return (
Expand Down

0 comments on commit 3a6eb53

Please sign in to comment.