Skip to content

Commit

Permalink
Moves scss from pages to styles/pages
Browse files Browse the repository at this point in the history
  • Loading branch information
KSJaay committed Nov 18, 2024
1 parent 275ba28 commit d991231
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion app/pages/error.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import './error.scss';
import '../styles/pages/error.scss';

// import dependencies
import { useNavigate } from 'react-router-dom';
Expand Down
2 changes: 1 addition & 1 deletion app/pages/home.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// import styles
import './home.scss';
import '../styles/pages/home.scss';

// import dependencies
import { useState } from 'react';
Expand Down
2 changes: 1 addition & 1 deletion app/pages/login.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import './register.scss';
import '../styles/pages/register.scss';

// import dependencies
import { useNavigate } from 'react-router-dom';
Expand Down
2 changes: 1 addition & 1 deletion app/pages/monitor.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import './monitor.scss';
import '../styles/pages/monitor.scss';

// import dependencies
import PropTypes from 'prop-types';
Expand Down
2 changes: 1 addition & 1 deletion app/pages/notifications.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// import styles
import './notifications.scss';
import '../styles/pages/notifications.scss';

// import dependencies
import { observer } from 'mobx-react-lite';
Expand Down
2 changes: 1 addition & 1 deletion app/pages/register.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import './register.scss';
import '../styles/pages/register.scss';

// import dependencies
import { useNavigate } from 'react-router-dom';
Expand Down
2 changes: 1 addition & 1 deletion app/pages/settings.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import './settings.scss';
import '../styles/pages/settings.scss';

// import dependencies
import { useEffect, useState } from 'react';
Expand Down
2 changes: 1 addition & 1 deletion app/pages/verify.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import './verify.scss';
import '../styles/pages/verify.scss';

import { StatusLogo } from '../components/icons';

Expand Down
2 changes: 1 addition & 1 deletion app/pages/error.scss β†’ app/styles/pages/error.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use '../styles/breakpoints.scss' as *;
@use '../breakpoints.scss' as *;

.error-page-container {
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion app/pages/home.scss β†’ app/styles/pages/home.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use '../styles/pxToRem.scss' as *;
@use '../pxToRem.scss' as *;

.home-container {
display: flex;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use '../styles/pxToRem.scss' as *;
@use '../pxToRem.scss' as *;

.monitor-container {
display: flex;
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use '../styles/pxToRem.scss' as *;
@use '../pxToRem.scss' as *;

.auth-form-container {
width: 100vw;
Expand Down
4 changes: 2 additions & 2 deletions app/pages/settings.scss β†’ app/styles/pages/settings.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@use '../styles/pxToRem.scss' as *;
@use '../styles/breakpoints.scss' as *;
@use '../pxToRem.scss' as *;
@use '../breakpoints.scss' as *;

.settings-content {
display: flex;
Expand Down
File renamed without changes.

0 comments on commit d991231

Please sign in to comment.