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
2 changes: 1 addition & 1 deletion src/collections/programs/hacktoberfest-2023/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Prepare for Hacktoberfest and ready yourself for contributing to CNCF projects t

Earn a Badge
Earn a Hacktoberfest Contributor badge by contributing to Layer5 projects during this Hacktoberfest.
<img src={hacktoberfestBadge} style={{ width: "250px" }}/>
<img src={hacktoberfestBadge} style={{ width: "250px" }}/>
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