Skip to content

Commit

Permalink
Merge pull request #2939 from sailaja-adapa/mob
Browse files Browse the repository at this point in the history
Fixed Mobile view
  • Loading branch information
panwar8279 authored Aug 10, 2024
2 parents 6a566f8 + df9b242 commit cc3f989
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
5 changes: 5 additions & 0 deletions frontend/src/App.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
.sidebar-content {
padding: 10px;
cursor: pointer;

transition: background-color 0.2s;
}

cursor: pointer;
transition: background-color 0.2s;
}
Expand Down
5 changes: 5 additions & 0 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import React, { useState, useEffect, Suspense, lazy } from "react";
import { Route, Routes } from "react-router-dom"; // Correct import
import "./App.css";
import About from "./Component/About";
import Footer from "./Component/Footer";
import Rateus from "./Component/Rateus";

import "./App.css";
import About from "./Component/About";
Expand All @@ -14,6 +18,7 @@ import BackToTopButton from "./Component/BackToTopButton";
import OpenSource from "./Component/OpenSource";
import Review from "./Component/Review";
import "./App.css";

import AOS from "aos";
import "aos/dist/aos.css";
import { Toaster } from "react-hot-toast";
Expand Down
13 changes: 6 additions & 7 deletions frontend/src/style/Home.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,19 @@

/* Custom scrollbar for webkit browsers (Chrome, Safari, Edge) */

::-webkit-scrollbar-track {
background-color: var(
--scrollbar-bg
); /* Background color of the scrollbar track */
border-radius: 15px;
}

/* Custom scrollbar for Firefox */
::-webkit-scrollbar {
scrollbar-width: thin; /* Makes the scrollbar thin */
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-bg); /* Custom colors */
border-radius: 15px;
width: 6px; /* Width of the scrollbar */
}
::-webkit-scrollbar-track {
background-color: var(
--scrollbar-bg
); /* Background color of the scrollbar track */
border-radius: 15px;
}
/* contributor style */
.contributors-section {
text-align: center;
Expand Down

0 comments on commit cc3f989

Please sign in to comment.