23 lines
380 B
Vue
23 lines
380 B
Vue
|
<template>
|
||
|
<v-app>
|
||
|
<v-sheet class="bg h-100 w-100 d-flex justify-center">
|
||
|
</v-sheet>
|
||
|
</v-app>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
name: "Register"
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
.bg {
|
||
|
background: rgb(238, 174, 202)!important;
|
||
|
background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%)!important;;
|
||
|
}
|
||
|
|
||
|
</style>
|