Skip to content

Commit 36a5852

Browse files
committed
colors
1 parent 38f1d1c commit 36a5852

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/components/AnimatedRoutes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,8 @@ function AnimatedRoutes() {
256256
</motion.div>
257257
}
258258
/>
259-
{/* D&D specific 404 page */}
260259
<Route
261-
path="/useful-links"
260+
path="/random"
262261
element={
263262
<motion.div
264263
initial="initial"
@@ -271,6 +270,7 @@ function AnimatedRoutes() {
271270
</motion.div>
272271
}
273272
/>
273+
{/* D&D specific 404 page */}
274274
<Route
275275
path="/dnd/*"
276276
element={

src/components/PostMetadata.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ const PostMetadata = ({
5151
return (
5252
<aside className="sticky top-24">
5353
<div
54-
className="p-6 rounded-lg border border-gray-700/50"
55-
style={postMetadataBackgroundColorStyle}
54+
className="p-6 bg-gray-800/50 rounded-lg border border-gray-700/50"
5655
>
5756
<h3 className="text-lg font-semibold text-gray-100 mb-4 border-b pb-2 border-gray-500">
5857
About Post

src/components/Sidebar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ const Sidebar = ({ isOpen, toggleSidebar, toggleModal }) => {
296296
<hr className="border-gray-700 my-4" />
297297

298298
<div className="flex space-x-2 font-sans">
299-
<NavLink to="/useful-links" className="bg-gray-900 hover:bg-gray-800 text-white py-2 px-4 rounded-md transition-colors w-full font-sans text-center">
299+
<NavLink to="/random" className="bg-gray-900 hover:bg-gray-800 text-white py-2 px-4 rounded-md transition-colors w-full font-sans text-center">
300300
Random
301301
</NavLink>
302302

0 commit comments

Comments
 (0)