Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/collections/programs/hacktoberfest-2023/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ speakers: ["Gaurav Chadha", "Pranav Singh", "Uzair Shaikh", "Yash Sharma", "Anit
published: true
upcoming: false
register: false
permalink: "hacktoberfest/2023"
program: "Hacktoberfest"
programSlug: "hacktoberfest"
Comment on lines +13 to +15
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@KhushamBansal
Kindly revert this, since it’s not related to the issue being addressed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kishore08-07 I raised a PR before making this change, but there was a build error. So, I had to make this change. Should I change the title of the PR?

---

import { Link } from "gatsby" ;
Expand Down
24 changes: 24 additions & 0 deletions src/components/Features-carousel/FeaturesCarousel.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,32 @@ import styled from "styled-components";

export const FeaturesWrapper = styled.div`
.features-carousel {
width: 100%;
display: block;
min-height: 400px;
height: auto;
padding-bottom: 2rem;
visibility: visible;
opacity: 1;
overflow: visible;

@media (min-width: 768px) {
display:none;
}

/* Force visibility of slider content */
.slick-slider, .slick-list, .slick-track, .slick-slide {
display: block;
min-height: 200px;
height: auto;
visibility: visible;
}
.slick-slide > div {
height: 100%; /* Ensure inner div takes height */
min-height: 200px;
}


img{
object-fit:contain;
margin-left:auto;
Expand All @@ -13,6 +36,7 @@ export const FeaturesWrapper = styled.div`

.main-heading{
margin-bottom: 2rem;
text-align: center;
}

.feature {
Expand Down
8 changes: 8 additions & 0 deletions src/sections/Meshery/Meshery-features/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,17 @@ import img7 from "./feature-images/extensions.webp";
const MesheryFeaturesWrapper = styled.div`
margin: auto;
margin-top: 4rem;
width: 100%;

@media (max-width: 32rem){
margin-top: 4rem;
}

@media (max-width: 767px){
display: block;
visibility: visible;
opacity: 1;
}

.feature-expose {
img {
Expand Down