Skip to content

Commit

Permalink
fix extra white space on right
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaskar1001101 committed Jul 11, 2024
1 parent 6c4c6f0 commit fc5b40f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<title>Status Code 1 | IIIT Kalyani</title>
</head>
<body class="overflow-x-hidden">
<body class="">
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#root {
/* text-align: center; */
background-color: #040842;
height: 100%;
/* height: 100%; */
}


Expand Down
2 changes: 1 addition & 1 deletion src/components/Cp/Cp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const SimpleSlider = ({ images, direction }) => {
}, []);

return (
<div className="slider-container w-screen relative p-0">
<div className="slider-container w-full relative p-0">
<div
className={`slider w-fit ${direction === 'left' ? 'slide-left' : 'slide-right'}`}
style={{
Expand Down
2 changes: 1 addition & 1 deletion src/components/Faq/Faq.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const Faq = () => {

return (
<section id='faq' className='max-[768px]:pt-[60px] pt-[95px]'>
<div className="relative w-screen flex items-start justify-center">
<div className="relative w-full flex items-start justify-center">
<div className="relative z-10 text-left mx-4 md:mx-8 lg:mx-12 xl:mx-20 w-full max-w-[1280px]">
<h1 className="text-[#9E9E9E] text-2xl md:text-4xl xl:text-5xl m-0">
$ ./<span id="heading-rules" className="text-white">FAQ</span>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function Navbar(){
<img className="min-[768px]:hidden sm:w-[50px] max-[450px]:w-[35px] max-[540px]:w-[40px] max-[640px]:w-[50px]" src={iiit_logo_mobile}></img>

</nav>
<div className=" absolute right-0 max-[540px]:mt-[22px] mt-[39px] w-[50px] mr-8">
<div className=" absolute right-0 max-[540px]:mt-[22px] mt-[39px] w-[50px]">
<SwipeableTemporaryDrawer/>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Schedule/Schedule.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function Schedule() {
<div
id="schedule"
name="schedule"
className="w-screen py-10 bg-transparent font-vt323 bg-no-repeat"
className="w-full py-10 bg-transparent font-vt323 bg-no-repeat"
style={{
// backgroundImage: `url('/src/assets/images/discord/stars.svg')`,
// backgroundPosition: `${50 + bgPosition.x}% ${50 + bgPosition.y}%`,
Expand Down

0 comments on commit fc5b40f

Please sign in to comment.