Skip to content

Instantly share code, notes, and snippets.

@yoovanr
Created July 23, 2021 10:44
Show Gist options
  • Save yoovanr/8532de75aecb1e914019ff5179385d96 to your computer and use it in GitHub Desktop.
Save yoovanr/8532de75aecb1e914019ff5179385d96 to your computer and use it in GitHub Desktop.
[Vue] pages/sign-in/index.vue
<template>
<div class="SignIn">
<SignInForm />
</div>
</template>
<style lang="scss" scoped>
.SignIn {
position: relative;
padding: 90px 0;
min-height: 100vh;
background: #EDEDED;
&::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
height: 330px;
width: 100%;
background: #EF0025;
z-index: 0;
}
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment