Skip to content

Commit

Permalink
Merge pull request #104 from coding-bootcamps-eu/100-add-desktop-desi…
Browse files Browse the repository at this point in the history
…gn-in-loginview

add Desktop design in LoginView #100
  • Loading branch information
maxnoelp authored Aug 26, 2024
2 parents 1a54a32 + c45f330 commit 7113484
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/LoginViewContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export default {
flex-direction: column;
margin: 2rem;
background-color: var(--header-color);
max-width: 320px;
}
.login-username {
margin-bottom: 2rem;
Expand Down
15 changes: 14 additions & 1 deletion src/views/LoginView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<header>
<img src="/src/assets/images/logos.png" width="350px" alt="threadhublogo" />
</header>
<div><LoginViewContainer /></div>
<div class="login-container"><LoginViewContainer /></div>
</div>
</template>

Expand All @@ -17,8 +17,21 @@ export default {
</script>

<style scoped>
#login {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
header {
display: flex;
justify-content: center;
margin-bottom: 1rem;
}
.login-container {
display: flex;
justify-content: center;
width: 100%;
}
</style>

0 comments on commit 7113484

Please sign in to comment.