Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.

Commit 44beb82

Browse files
fix: use lang="postcss" instead of "pcss"
1 parent e5e86aa commit 44beb82

File tree

8 files changed

+25
-24
lines changed

8 files changed

+25
-24
lines changed

components/Consent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default {
1919
}
2020
</script>
2121

22-
<style lang="pcss">
22+
<style lang="postcss">
2323
.cookie-consent {
2424
@apply .w-full .py-2 .relative .flex .items-center .justify-center .bg-developmint-darker .text-developmint-lightest .text-xs;
2525

components/ContactUsModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export default {
228228
}
229229
</script>
230230

231-
<style lang="pcss">
231+
<style lang="postcss">
232232
textarea:focus, input:focus {
233233
outline: none;
234234
}

components/Footer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default {
6464
}
6565
</script>
6666

67-
<style lang="pcss">
67+
<style lang="postcss">
6868
.bg-footer {
6969
background-image: linear-gradient(rgba(9, 0, 16, 1), rgba(11, 7, 16, 0.97));
7070
background-size: cover;

components/work/AnimatedNumber.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export default {
5353
if (this.state > 0) {
5454
return
5555
}
56+
5657
this.state = 1
5758
const options = {
5859
from: { x: this.from, y: 0 },

layouts/error.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default {
3232
}
3333
</script>
3434

35-
<style lang="pcss">
35+
<style lang="postcss">
3636
.bg-404 {
3737
background-image: linear-gradient(config('colors.rains-dark'), rgba(11, 7, 35, 0.65)), url("~assets/img/bg/404.jpg");
3838
background-size: cover;

pages/about.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
</section>
1111
<section class="md:mx-16 my-24 bg-rains-light xl:flex">
1212
<TeamMember
13-
v-for="member in $options.members"
1413
:key="member.slug"
1514
v-bind="member"
15+
v-for="member in $options.members"
1616
/>
1717
</section>
1818
</div>
@@ -57,15 +57,15 @@ export default {
5757
}
5858
</script>
5959

60-
<style lang="pcss">
60+
<style lang="postcss">
6161
.bg-about-us {
6262
background-image: linear-gradient(rgba(11, 7, 16, 0.6), config('colors.rains-dark')), url("~assets/img/bg/about-us_sm.jpg");
6363
background-size: cover;
6464
background-position: top;
6565
66-
@screen md {
67-
background-image: linear-gradient(rgba(11, 7, 16, .6), rgba(11, 7, 16, .6) 80%, config('colors.rains-dark')), url("~assets/img/bg/about-us.jpg");
68-
background-position: top;
69-
}
66+
@screen md {
67+
background-image: linear-gradient(rgba(11, 7, 16, .6), rgba(11, 7, 16, .6) 80%, config('colors.rains-dark')), url("~assets/img/bg/about-us.jpg");
68+
background-position: top;
69+
}
7070
}
7171
</style>

pages/index.vue

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@
6969
</p>
7070
<div class="lg:flex justify-center items-center my-16">
7171
<ExpertiseCategory
72-
v-for="(expertise, index) in $t('index.expertises.content')"
73-
:key="index"
7472
:is-first="!index"
73+
:key="index"
7574
:list-items="expertise.listItems"
7675
:title="expertise.title"
76+
v-for="(expertise, index) in $t('index.expertises.content')"
7777
/>
7878
</div>
7979
<p
@@ -88,11 +88,11 @@
8888
<Transition name="slide-fade">
8989
<div class="lg:flex flex-row justify-around lg:my-8 md:p-4">
9090
<InformationIcon
91-
v-for="(data,index) in $t('index.informationIcons')"
92-
:key="index"
9391
:class="{'opacity-0': !showIcons}"
9492
:content="data.content"
93+
:key="index"
9594
:title="data.title"
95+
v-for="(data,index) in $t('index.informationIcons')"
9696
>
9797
<Component
9898
:is="data.img"
@@ -181,7 +181,7 @@ export default {
181181
}
182182
</script>
183183

184-
<style lang="pcss">
184+
<style lang="postcss">
185185
.bg-gradient-developmint-lighter-rains-lighter-rains-lightest {
186186
background-image: linear-gradient(23deg, config('colors.developmint-lighter'), config('colors.rains-lighter'), config('colors.rains-lightest'));
187187
}
@@ -194,18 +194,18 @@ export default {
194194
background-size: cover;
195195
background-image: linear-gradient(config('colors.rains-dark'), rgba(11, 7, 16, 0.65)), url("~assets/img/bg/hero_sm.jpg");
196196
197-
@screen md {
198-
background-image: linear-gradient(config('colors.rains-dark'), rgba(11, 7, 16, 0.65)), url("~assets/img/bg/hero.jpg");
199-
}
197+
@screen md {
198+
background-image: linear-gradient(config('colors.rains-dark'), rgba(11, 7, 16, 0.65)), url("~assets/img/bg/hero.jpg");
199+
}
200200
}
201201
202202
.bg-cta-end {
203203
background-size: cover;
204204
background-image: linear-gradient(rgba(9, 0, 16, 0.25), rgba(11, 7, 16, 1)), url("~assets/img/bg/contact_sm.jpg");
205205
206-
@screen md {
207-
background-image: linear-gradient(rgba(9, 0, 16, 0.25), rgba(11, 7, 16, 1)), url("~assets/img/bg/contact.jpg");
208-
background-position: bottom;
209-
}
206+
@screen md {
207+
background-image: linear-gradient(rgba(9, 0, 16, 0.25), rgba(11, 7, 16, 1)), url("~assets/img/bg/contact.jpg");
208+
background-position: bottom;
209+
}
210210
}
211211
</style>

pages/work/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
>
3333
<AnimatedNumber
3434
:duration="duration"
35+
:precision="precision"
3536
:should-start="isVisible"
3637
:to="to"
37-
:precision="precision"
3838
class="text-2xl font-bold pl-4"
3939
style="font-variant-numeric: tabular-nums"
4040
/>
@@ -123,7 +123,7 @@ export default {
123123
}
124124
</script>
125125

126-
<style lang="pcss">
126+
<style lang="postcss">
127127
.bg-work {
128128
background-size: cover;
129129
background-image: linear-gradient(config('colors.rains-dark'), rgba(11, 7, 16, 0.6)), url("~assets/img/bg/work_sm.jpg");

0 commit comments

Comments
 (0)