Skip to content

Commit

Permalink
fix issue #1
Browse files Browse the repository at this point in the history
Signed-off-by: Sudhanshu Dasgupta <[email protected]>
  • Loading branch information
sudhanshutech committed Oct 3, 2024
1 parent 7cdd9f8 commit b3d900d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/UpcomingEventCard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import slugify from "../../utils/slugify";
const UpcomingEvents = ({ data }) => {
return (
<UpcomingEventsWrapper>
<div className="blog-slider">
<div className="blog-slider swiper">
<div className="blog-slider__wrp swiper-wrapper">

<Swiper
Expand Down
4 changes: 3 additions & 1 deletion src/reusecore/Layout/Row.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ import styled, { css } from "styled-components";

const RowWrapper = styled.div`
display: flex;
flex-wrap: wrap;
margin-left: -15px;
margin-right: -15px;
@media (max-width: 760px) {
flex-wrap: wrap;
}
${(props) =>
props.$Vcenter &&
css({
Expand Down

0 comments on commit b3d900d

Please sign in to comment.