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

Commit 48bd228

Browse files
authored
Merge pull request #36 from NaturalSelectionLabs/ui
feat: index page logo and bg updates
2 parents 019741c + be715bc commit 48bd228

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

src/assets/images/pass3.gif

1.87 MB
Loading

src/assets/images/pass3logo.svg

Lines changed: 1 addition & 0 deletions
Loading

src/views/Index.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
2-
<div class="onboarding h-full text-center bg-cover bg-fixed flex items-center justify-center">
3-
<div class="body px-4 h-2/3 flex flex-col justify-between">
4-
<h1 class="text-8xl text-primary font-bold">Hello</h1>
2+
<div class="onboarding h-full text-center bg-cover bg-fixed flex items-center justify-center bg-pass3gradient">
3+
<div class="body px-4 h-2/3 flex flex-col justify-center items-center gap-56">
4+
<div class="logo-container w-50 h-50 bg-pass3logo bg-center bg-contain bg-no-repeat"></div>
55
<div class="leading-17.5 text-white w-83.5 text-2xl mx-auto">
66
<Button
77
size="lg"
@@ -161,8 +161,8 @@ export default class Index extends Vue {
161161

162162
<style lang="postcss" scoped>
163163
@layer components {
164-
.onboarding {
165-
background-image: url('../assets/images/rss3-bg.png');
164+
.logo-container {
165+
mix-blend-mode: multiply;
166166
}
167167
}
168168
</style>

tailwind.config.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,22 @@ module.exports = {
9191
},
9292
width: {
9393
27: '6.75rem', //108px, scan tag width
94-
45: '11.25rem', //180px, discard & save button width
94+
45: '11.25rem', //180px, discard & save button width,
95+
50: '12.5rem', //200px
96+
},
97+
height: {
98+
50: '12.5rem', //200px
9599
},
96100
backgroundImage: (theme) => ({
97101
BSC: "url('@/assets/images/chains/BSC.png')",
98102
Ethereum: "url('@/assets/images/chains/Ethereum.png')",
99103
Ronin: "url('@/assets/images/chains/Ronin.png')",
100104
Etherscan: "url('@/assets/images/scans/Etherscan.png')",
101105
Roninscan: "url('@/assets/images/scans/Roninscan.png')",
106+
pass3gif: 'url(@/assets/images/pass3.gif)',
107+
pass3logo: 'url(@/assets/images/pass3logo.svg)',
108+
pass3gradient:
109+
'linear-gradient(172.52deg, #0072FF -40.83%, #96C5FF -3.21%, #DDECFF 28.66%, #FFFFFF 44.01%);',
102110
}),
103111
backgroundSize: {
104112
85: '85%',

0 commit comments

Comments
 (0)