Skip to content

Commit ef7c3fd

Browse files
fix
Signed-off-by: saurabhraghuvanshii <saurabhsraghuvanshi@gmail.com>
1 parent 0ec0982 commit ef7c3fd

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

src/sections/Meshery/Features-section/features-section.style.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ const FeaturesSectionWrapper = styled.section`
1212
max-width: 100%;
1313
contain: layout style paint;
1414
transform-origin: center;
15+
z-index: 1;
16+
height: auto;
17+
isolate: isolate;
1518
.skw{
1619
display: grid;
1720
position: relative;
@@ -54,6 +57,8 @@ const FeaturesSectionWrapper = styled.section`
5457
transform: skew(0deg, 6deg);
5558
padding: 0 1rem 3rem;
5659
text-align: center;
60+
position: relative;
61+
z-index: 1;
5762
h1, h2, p {
5863
color: white;
5964
}

src/sections/Meshery/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ const MesheryPage = () => {
5757
</div>
5858
<FeaturesTable />
5959
</Container>
60-
<div style={{ overflow: 'hidden', width: '100%', position: 'relative' }}>
60+
<div style={{ overflow: 'hidden', width: '100%', position: 'relative', zIndex: 1 }}>
6161
<FeaturesSection />
6262
</div>
63-
<Container>
63+
<Container style={{ position: 'relative', zIndex: 2 }}>
6464
<InlineQuotes
6565
quote="Meshery is the perfect tool for ensuring that your applications are optimally configured and performing well; it also gives you a fantastic visual insight into what can be a large amount of textual configuration"
6666
person="Nic Jackson"
@@ -72,7 +72,7 @@ const MesheryPage = () => {
7272
</div>
7373
</Container>
7474
<Features />
75-
<Container>
75+
<Container style={{ position: 'relative', zIndex: 2 }}>
7676
<DockerExtensionCTA />
7777
<InlineQuotes
7878
quote="The Meshery Extension transforms Docker Desktop into a powerful load generation utility, conveniently enabling me to deploy and configure any cloud native infrastructure with a click of the button and invoke and control load-based performance tests from my desktop."

src/sections/Meshery/meshery.style.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ const MesheryWrapper = styled.section`
1818
overflow: hidden;
1919
width: 100%;
2020
position: relative;
21+
height: auto;
22+
max-height: none;
2123
}
2224
}
2325

0 commit comments

Comments
 (0)