Skip to content

Commit 22b6db5

Browse files
author
Vivek Vishal
authored
Merge branch 'master' into Extension
2 parents 874765e + 6a39b6b commit 22b6db5

4 files changed

Lines changed: 66 additions & 14 deletions

File tree

Lines changed: 44 additions & 0 deletions
Loading

src/collections/blog/Blog.style.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,12 @@ export const BlogWrapper = styled.div`
6363
}
6464
}
6565
h3 {
66+
margin-top: .75rem;
6667
margin-bottom: .75rem;
6768
}
69+
ul {
70+
margin-bottom: .75rem;
71+
}
6872
.to-uppercase {
6973
text-transform: uppercase;
7074
}

src/components/CommonForm/commonForm.style.js

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ margin: 1rem;
4646
4747
.form{
4848
font-size: .9rem;
49-
width: fit-content !important;
50-
margin: 0 1rem 1rem;
49+
width: 100%;
50+
margin: 0 0 1rem;
5151
padding: 1rem;
5252
5353
.supscript{
@@ -58,7 +58,7 @@ margin: 1rem;
5858
5959
label {
6060
display: block;
61-
font-size: 1rem;
61+
font-size: .98rem;
6262
}
6363
6464
.required-sign {
@@ -97,7 +97,7 @@ margin: 1rem;
9797
display: block;
9898
}
9999
.formRight select {
100-
background: linear-gradient(90deg, rgba(0,179,159,0.15) 0%, rgba(208,228,228,.7) 40%);
100+
background: ${props => props.theme.grey212121ToWhite};
101101
border: 1px solid black;
102102
border-radius: 10px;
103103
height: 50px;
@@ -108,14 +108,6 @@ margin: 1rem;
108108
color: ${props => props.theme.primaryColor};
109109
}
110110
111-
.options {
112-
color: ${props => props.theme.textColor};
113-
}
114-
115-
.formRight option {
116-
color: black;
117-
}
118-
119111
.custom-arrow {
120112
background-color: white;
121113
width: 2rem;
@@ -146,8 +138,9 @@ margin: 1rem;
146138
border-radius: 10px;
147139
padding: .5rem .5rem;
148140
font-size: .85rem;
149-
background: linear-gradient(90deg, rgba(0,179,159,0.15) 0%, rgba(208,228,228,.7) 40%);
141+
background: ${props => props.theme.grey212121ToWhite};
150142
color: ${props => props.theme.primaryColor};
143+
resize: none;
151144
}
152145
153146
.text-field:focus {

src/sections/Community/Handbook/security-vulnerabilities.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import MesheryOperator from "../../../assets/images/meshery-operator/meshery-ope
99
import MeshSync from "../../../assets/images/meshsync/meshsync.svg";
1010
import servicemeshperformance from "../../../assets/images/service-mesh-performance/icon/smp-dark.svg";
1111
import meshery from "../../../assets/images/meshery/icon-only/meshery-logo-light.svg";
12+
import mesheryextension from "../../../assets/images/meshery-extensions/icon-only/meshery-extensions-color.svg";
1213
import servicemeshpattern from "../../../assets/images/service-mesh-patterns/service-mesh-pattern.svg";
1314
import Kanvas from "../../../assets/images/kanvas/icon-only/kanvas-icon-color.svg";
1415

@@ -25,7 +26,7 @@ const SecurityVulnerabilitiesPage = () => {
2526
<h2 className="heading-top">Reporting a vulnerability</h2><br />
2627
<p>We are very grateful to the security researchers and users that report security vulnerabilities. We investigate each report thoroughly.</p>
2728
<p>To make a report, send an email to the private <a href="mailto: security@layer5.io">security@layer5.io</a> mailing list with the vulnerability details. For normal product bugs unrelated to latent security vulnerabilities, please head to the appropriate repository and submit a <a href="https://github.com/layer5io/layer5/issues/new/choose">new issue</a> .</p>
28-
<p>Note that the Layer5 community spans five GitHub organizations:</p>
29+
<p>Note that the Layer5 community spans six GitHub organizations:</p>
2930
<ul className="project-org-list">
3031
<li>
3132
<a href="https://github.com/layer5io">
@@ -93,6 +94,16 @@ const SecurityVulnerabilitiesPage = () => {
9394
style={{ marginLeft: ".3rem" }}
9495
/>Kanvas.
9596
</li>
97+
<li>
98+
<a href="https://github.com/meshery-extensions">
99+
<img
100+
src={mesheryextension}
101+
alt="meshery extension icon"
102+
/>
103+
&nbsp; Meshery Extensions
104+
</a>
105+
- plugins or add-ons providing extra functionalities that can be used to customize, extend and integrate with other tools and services.
106+
</li>
96107
</ul>
97108
<p>You can find the list of all the Layer5 project repositories <a href="https://layer5.io/community/handbook/repository-overview">here</a></p>
98109
<h3>When to report a security vulnerability?</h3>

0 commit comments

Comments
 (0)