Skip to content

Commit be92681

Browse files
author
Fumito
authored
Merge pull request #27 from serverless-operations/renew-partners
Renew partners
2 parents 7adea2e + ec6fa2d commit be92681

File tree

11 files changed

+255
-162
lines changed

11 files changed

+255
-162
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"global": "^4.4.0",
1818
"gridsome": "^0.7.14",
1919
"gridsome-plugin-remark-prismjs-all": "^0.3.5",
20+
"gsap": "^3.5.1",
2021
"prismjs": "^1.20.0",
2122
"sharp": "^0.26.2",
2223
"swiper": "^6.0.4",

src/assets/images/our-partners/aws-logo.svg

Lines changed: 1 addition & 28 deletions
Loading

src/assets/images/partners/aws-logo.svg

Lines changed: 28 additions & 0 deletions
Loading
Lines changed: 30 additions & 0 deletions
Loading

src/assets/scss/_color.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@ $mid-gray-1: #60759f;
1010
$mid-gray-2: #afbacf;
1111
$mid-gray-3: #cfd6e2;
1212
$light-gray-1: #eef1f5;
13-
$light-gray-2: #f9f9fb;
13+
$light-gray-2: #f9f9fb;
14+
15+
$text-black: #001A4D;

src/components/CallToAction.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,13 +201,15 @@
201201
}
202202
}
203203
}
204+
// 対象、時間、カレンダー
204205
.cta-task-overview {
205206
background-color: $primary;
206207
color: #fff;
207208
min-height: 320px;
208209
display: flex;
209210
justify-content: center;
210211
align-items: center;
212+
border-radius: 0 3px 3px 0;
211213
@include media-breakpoint-down(sm) {
212214
min-height: 480px;
213215
}

src/components/TopClients.vue

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,18 @@
5454
</template>
5555

5656
<script>
57+
/*import { gsap } from 'gsap'
58+
import { ScrollTrigger } from 'gsap/ScrollTrigger'
59+
gsap.registerPlugin(ScrollTrigger)*/
60+
5761
export default {
5862
5963
}
6064
</script>
6165

6266
<style lang="scss" scoped>
6367
.v-content {
64-
padding: 80px 0;
68+
padding: 80px 0 160px 0;
6569
background: $light-gray-2;
6670
display: block;
6771
flex: initial;
@@ -71,7 +75,7 @@ export default {
7175
}
7276
}
7377
h2 {
74-
color: $primary;
78+
color: $secondary;
7579
font-size: 3.5rem;
7680
font-family: $font-en-normal;
7781
font-weight: normal;
@@ -80,6 +84,7 @@ export default {
8084
display: block;
8185
width: 100%;
8286
margin-bottom: 64px;
87+
position: relative;
8388
@include media-breakpoint-up(md) {
8489
font-size: 4rem;
8590
}
@@ -93,6 +98,17 @@ export default {
9398
font-weight: normal;
9499
font-family: $font-jp-normal;
95100
}
101+
&::after {
102+
content: '';
103+
display: block;
104+
width: 80px;
105+
height: 1px;
106+
background-color: $secondary;
107+
position: absolute;
108+
left: 50%;
109+
margin-left: -40px;
110+
bottom: -24px;
111+
}
96112
}
97113
.clients-image-container {
98114
width: 80%;
@@ -115,6 +131,7 @@ export default {
115131
margin: 12px;
116132
box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.08);
117133
border-radius: 3px;
134+
backface-visibility: hidden;
118135
@include media-breakpoint-down(md) {
119136
flex-basis: calc(25% - 36px);
120137
margin: 12px;

src/components/TopOurPartners.vue

Lines changed: 0 additions & 122 deletions
This file was deleted.

0 commit comments

Comments
 (0)