Skip to content

Commit

Permalink
fix styles #2
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 b3d900d commit 862de60
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/components/UpcomingEventCard/EventCard.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const UpcomingEventsWrapper = styled.div`
padding: 1rem;
border-radius: 0.5rem;
height: 39.5rem;
overflow: auto;
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.blog-slider_img{
Expand Down
4 changes: 3 additions & 1 deletion src/components/UpcomingEventCard/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ const UpcomingEvents = ({ data }) => {
return (
<UpcomingEventsWrapper>
<div className="blog-slider swiper">
<div className="blog-slider__wrp swiper-wrapper">
<div style={{
display: "block"
}} className="blog-slider__wrp swiper-wrapper">

<Swiper
spaceBetween={100}
Expand Down
1 change: 0 additions & 1 deletion src/sections/CloudNativeDeployments/deploy.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const CloudDeploy = styled.div`
.collaboration_display {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
margin: 0 10px;
align-items: flex-start;
Expand Down
1 change: 0 additions & 1 deletion src/sections/Developer-Infrastructure/deploy.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const CloudDeploy = styled.div`
.collaboration_display {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
margin: 0 10px;
align-items: flex-start;
Expand Down
4 changes: 3 additions & 1 deletion src/sections/Events/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ const Meetups = ({ data, pageContext }) => {
<Button className={active == "meetups" ? "active" : ""} onClick={() => setActive("meetups")} title="MeetUps" />
</div>
<div>
<Row>
<Row style={{
flexWrap: "wrap"
}}>
{active == "all" ? sortEvents(data.allCategories.nodes).map(category => {
return (
<Col $xs={12} $sm={6} $lg={4} key={category.id}>
Expand Down
1 change: 0 additions & 1 deletion src/sections/kubernetes-multi-cluster/kube.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const CommentsWrapper = styled.div`
.collaboration_display {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
margin: 0 10px;
align-items: flex-start;
Expand Down

0 comments on commit 862de60

Please sign in to comment.