From 0643532d5a5adeebf712fb7e0fecf5181baf8e77 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Wed, 28 Oct 2020 13:42:44 +0100 Subject: Use built-in Sass support from Create React App This change updates the frontend to use the built-in Sass support provided by Create React App to simplify the development pipeline. --- frontend/src/pages/Home.js | 2 +- frontend/src/pages/NotFound.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/pages') diff --git a/frontend/src/pages/Home.js b/frontend/src/pages/Home.js index 5000ebfe..6fc940c0 100644 --- a/frontend/src/pages/Home.js +++ b/frontend/src/pages/Home.js @@ -9,7 +9,7 @@ import StakeholderSection from '../components/home/StakeholderSection' import TeamSection from '../components/home/TeamSection' import TechnologiesSection from '../components/home/TechnologiesSection' import HomeNavbar from '../components/navigation/HomeNavbar' -import './Home.css' +import './Home.sass' function Home() { return ( diff --git a/frontend/src/pages/NotFound.js b/frontend/src/pages/NotFound.js index f72c7d01..72be7342 100644 --- a/frontend/src/pages/NotFound.js +++ b/frontend/src/pages/NotFound.js @@ -1,7 +1,7 @@ import React from 'react' import DocumentTitle from 'react-document-title' import TerminalWindow from '../components/not-found/TerminalWindow' -import './NotFound.css' +import './NotFound.sass' const NotFound = () => ( -- cgit v1.2.3