This commit is contained in:
2021-08-17 22:49:55 +02:00
parent cf9d3b83bd
commit b2d8eaf01c
5 changed files with 24 additions and 11 deletions

View File

@@ -9,9 +9,9 @@
{{ $t('home.banner.student.main') }} <strong>{{ $t('home.banner.student.strong') }}</strong>. {{ $t('home.banner.student.main') }} <strong>{{ $t('home.banner.student.strong') }}</strong>.
</h2> </h2>
<div class="select-none mt-4 text-5xl text-gray-800 mb-10 dark:text-gray-300"> <div class="select-none mt-4 text-5xl text-gray-800 mb-10 dark:text-gray-300">
<span id="develop" class="color blue">Develop.</span> <span id="develop" class="color blue">{{ $t('home.banner.color.develop') }}</span>
<span id="publish" class="color">Publish.</span> <span id="publish" class="color">{{ $t('home.banner.color.publish') }}</span>
<span id="improve" class="color">Improve.</span> <span id="improve" class="color">{{ $t('home.banner.color.improve') }}</span>
</div> </div>
</div> </div>
</section> </section>

View File

@@ -156,13 +156,17 @@ export default defineComponent({
@apply border-indigo-600 @apply border-indigo-600
} }
} }
.link { .link-active a {
a { @apply text-indigo-600;
@apply border-b-2 border-transparent duration-300; }
&:hover { .social-links a {
@apply border-indigo-600; svg {
} @apply h-6 w-6 duration-300
}
&:hover svg {
@apply transform hover:scale-120
} }
} }
} }

View File

@@ -161,7 +161,7 @@ export default defineComponent({
}) })
</script> </script>
<style lang="scss"> <style scoped lang="scss">
.cross:hover svg { .cross:hover svg {
@apply transform scale-140; @apply transform scale-140;
} }

View File

@@ -60,6 +60,11 @@ const translations = {
spacer: 'or simply by', spacer: 'or simply by',
contact: 'Contacting', contact: 'Contacting',
me: 'me.' me: 'me.'
},
color: {
develop: 'Develop.',
publish: 'Publish.',
improve: 'Improve.'
} }
}, },
ad: { ad: {

View File

@@ -1,5 +1,4 @@
import axios from "axios"; import axios from "axios";
import {Translation} from "~/types/types";
const translations = { const translations = {
header: { header: {
@@ -67,6 +66,11 @@ const translations = {
spacer: 'ou tout simplement en me', spacer: 'ou tout simplement en me',
contact: 'Contactant', contact: 'Contactant',
me: '.' me: '.'
},
color: {
develop: 'Développer.',
publish: 'Publier.',
improve: 'Améliorer.'
} }
}, },
ad: { ad: {