Skip to content

Commit

Permalink
Merge pull request #66 from innogeeks/test
Browse files Browse the repository at this point in the history
Test
  • Loading branch information
1010varun authored Mar 28, 2024
2 parents f17106c + dc5c2ce commit 4ebc5ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/components/Schedule/schedule.css
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@
.image-container {
display: flex; /* Use flexbox for positioning images */
justify-content: center; /* Center images horizontally */
padding: 40px;
padding: 20px;
}

.mobile-image,
Expand All @@ -406,7 +406,7 @@
}

/* Styles for laptop view (min-width: 768px) */
@media only screen and (min-width: 768px) {
@media only screen and (min-width: 767px) {
.laptop-image {
display: block; /* Display the laptop image */
}
Expand Down
3 changes: 2 additions & 1 deletion src/components/Schedule/schedule.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import "./schedule.css";
import Aos from "aos"
import "aos/dist/aos.css"
import { useEffect } from "react";
import mobImg from "./assets/Copy of Copy of Innohacks 3.0 brochure.png"
const Schedule = () => {
useEffect(()=>{
Aos.init({duration:400})
Expand All @@ -22,7 +23,7 @@ const Schedule = () => {

<div className="image-container">
<img
src="https://s3.ap-south-1.amazonaws.com/innohacks3.0/mobileviewupdated.png"
src={mobImg}
alt=""
className="mobile-image"
data-aos="fade-right"
Expand Down

0 comments on commit 4ebc5ba

Please sign in to comment.