Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit 22316aa

Browse files
author
Manuel Proß
committed
feat(FE): switch to sass
1 parent a03a289 commit 22316aa

File tree

6 files changed

+41
-16
lines changed

6 files changed

+41
-16
lines changed

web/package-lock.json

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

web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"eslint-plugin-import-helpers": "^1.3.1",
2828
"postcss": "^8",
2929
"postcss-import": "^16.0.0",
30+
"sass": "^1.70.0",
3031
"tailwindcss": "^3",
3132
"typescript": "^5"
3233
}

web/src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Inter } from 'next/font/google';
22
import type { Metadata } from 'next';
3-
import '../styles/globals.css';
3+
import '../styles/globals.scss';
44
import Layout from '@/components/Layout/Layout';
55

66
const inter = Inter({ subsets: ['latin'] });
File renamed without changes.
File renamed without changes.

web/src/styles/globals.css renamed to web/src/styles/globals.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import './components.css';
1+
@import './components.scss';
22
@tailwind base;
33
@tailwind components;
44
@tailwind utilities;

0 commit comments

Comments
 (0)