Skip to content

Commit

Permalink
feat: ✨ Slightly restyled login screen
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLambrecht committed Sep 7, 2018
1 parent dd998db commit 422c11b
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions src/components/LoggedOutWindow.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div class="logged-out-window">
<square-image :url="'./src/assets/logo.png'" :size="140"/>
<b-headline level="1">Spotify Magician</b-headline>
<b-link :href="loginURI">
Get access
<b-headline level="1" class="app-name">Spotify Magician</b-headline>
<b-link :href="loginURI" class="login-link">
Please login
</b-link>
</div>
</template>
Expand Down Expand Up @@ -34,6 +34,27 @@ export default {

<style lang="scss" scoped>
.logged-out-window {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 80vh;
text-align: center;
.app-name {
margin-bottom: 20px;
}
.login-link {
font-size: 18px;
text-decoration: none;
transition: .1s background-color ease;
padding: 10px;
border-radius: 5px;
&:hover {
background-color: #F0F0F0;
}
}
}
</style>

0 comments on commit 422c11b

Please sign in to comment.