diff --git a/src/components/PRDashboard.jsx b/src/components/PRDashboard/PRDashboard.jsx
similarity index 73%
rename from src/components/PRDashboard.jsx
rename to src/components/PRDashboard/PRDashboard.jsx
index e1b9a68629..1758560d3a 100644
--- a/src/components/PRDashboard.jsx
+++ b/src/components/PRDashboard/PRDashboard.jsx
@@ -1,4 +1,5 @@
import hasPermission from '~/utils/permissions';
+import styles from './PRDashboard.module.css';
function PRDashboard({ authUser }) {
if (!hasPermission('accessPRTeamDashboard', authUser?.permissions)) {
@@ -7,7 +8,7 @@ function PRDashboard({ authUser }) {
return (
-
PR Team Dashboard
+ PR Team Dashboard
{/* actual dashboard content */}
);
diff --git a/src/components/PRDashboard/PRDashboard.module.css b/src/components/PRDashboard/PRDashboard.module.css
new file mode 100644
index 0000000000..cf04b1bbed
--- /dev/null
+++ b/src/components/PRDashboard/PRDashboard.module.css
@@ -0,0 +1,3 @@
+.prdashcontainer {
+ padding: 2rem;
+}
\ No newline at end of file
diff --git a/src/routes.jsx b/src/routes.jsx
index 0859e39d27..51542b19ce 100644
--- a/src/routes.jsx
+++ b/src/routes.jsx
@@ -20,7 +20,7 @@ import Timelog from './components/Timelog';
import UserProfileEdit from './components/UserProfile/UserProfileEdit';
import EditableInfoModal from './components/UserProfile/EditableModal/EditableInfoModal';
import RoleInfoCollections from './components/UserProfile/EditableModal/RoleInfoModal';
-import PRDashboard from './components/PRDashboard';
+import PRDashboard from './components/PRDashboard/PRDashboard';
import ApplicationTimeChartPage from './components/ApplicationTimeChart';
import ApplicantsChart from './components/ApplicantsChart';
import ApplicationAnalyticsContainer from './components/ApplicationAnalytics';