Skip to content
This repository was archived by the owner on Feb 5, 2022. It is now read-only.

Commit df4250c

Browse files
committed
Merge branch 'member-details-updates' of https://github.com/openforge/OPENFORGE.IO into member-details-updates
2 parents 0e3e393 + f70bba1 commit df4250c

File tree

4 files changed

+45
-5
lines changed

4 files changed

+45
-5
lines changed

src/components/app-members-section/app-members-section.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export class AppMembersSection {
182182
mail: '',
183183
twitter: '',
184184
github: '',
185-
url: '/about/join-us',
185+
url: '/opportunities',
186186
},
187187
// {
188188
// name: 'YOU?',

src/components/app-members/app-members.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ export class AppMembers {
6464
</figure>
6565
);
6666
})}
67+
<figure class="member" />
6768
</div>
6869
);
6970
}

src/pages/app-about/app-about.scss

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,31 @@
3434
font-weight: 600;
3535
letter-spacing: 2.1px;
3636
line-height: 45px;
37+
text-align: center;
38+
39+
span {
40+
display: inline-block;
41+
position: relative;
42+
43+
&:before,
44+
&:after {
45+
content: '';
46+
position: absolute;
47+
height: 5px;
48+
border-bottom: 1px solid #9d9d9e;
49+
top: 20px;
50+
width: 500px;
51+
}
52+
53+
&:before {
54+
right: 100%;
55+
margin-right: 15px;
56+
}
57+
&:after {
58+
left: 100%;
59+
margin-left: 15px;
60+
}
61+
}
3762
}
3863

3964
h3 {
@@ -116,7 +141,7 @@
116141
font-weight: 600;
117142
letter-spacing: 2.1px;
118143
line-height: 38px;
119-
margin: 4rem 0;
144+
margin: 5rem 0;
120145
text-align: center;
121146
}
122147
}
@@ -142,18 +167,30 @@
142167
background: url('assets/svg/about-graphic-integrity.svg') center center no-repeat;
143168
height: 164px;
144169
width: 220px;
170+
@include media-breakpoint-down(md) {
171+
height: 120px;
172+
width: 120px;
173+
}
145174
}
146175

147176
.honesty {
148177
background: url('assets/svg/about-graphic-honesty.svg') center center no-repeat;
149178
height: 164px;
150179
width: 220px;
180+
@include media-breakpoint-down(md) {
181+
height: 120px;
182+
width: 120px;
183+
}
151184
}
152185

153186
.transparency {
154187
background: url('assets/svg/about-graphic-transparency.svg') center center no-repeat;
155188
height: 164px;
156189
width: 220px;
190+
@include media-breakpoint-down(md) {
191+
height: 120px;
192+
width: 120px;
193+
}
157194
}
158195

159196
// .team-photo {

src/pages/app-about/app-about.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,10 @@ export class AppAbout {
4141

4242
<div class="row justify-content-center d-none d-md-block values">
4343
<div class="col-12">
44-
<h2>
45-
<app-translate keyword="about.values.title" />
44+
<h2 class="aside-lines">
45+
<span>
46+
<app-translate keyword="about.values.title" />
47+
</span>
4648
</h2>
4749
<p>
4850
<app-translate keyword="about.values.text" />
@@ -74,7 +76,7 @@ export class AppAbout {
7476
</div>
7577

7678
<div id="members" class="row justify-content-center members">
77-
<div class="col-11 col-lg-12">
79+
<div class="col-10 col-lg-10">
7880
<h2>
7981
<app-translate keyword="about.landing.cta.title" />
8082
</h2>

0 commit comments

Comments
 (0)