Skip to content

Commit

Permalink
Fixed footer stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kuroji-fusky committed Feb 13, 2023
1 parent 0f191b0 commit 628d971
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion website/components/Landing/LandingThird.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ onMounted(() => {
</script>

<template>
<section class="px-12 h-[80vh]">
<section class="h-screen px-12">
<h1 class="my-6 mt-[6.5rem] text-5xl font-bold text-center font-inter">
You're in control
</h1>
Expand Down
2 changes: 1 addition & 1 deletion website/components/TheBaseFooter.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<footer>
<div class="flex justify-between px-10 py-6 mx-auto max-w-screen-2xl">
<div class="mt-[2rem] flex justify-between px-10 py-6 mx-auto max-w-screen-2xl">
<span id="copyright">
&copy; 2022-{{ new Date().getFullYear() }} MyFursona
</span>
Expand Down
14 changes: 12 additions & 2 deletions website/pages/login.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<script setup lang="ts">
import Form from '~~/components/Landing/Login/Form.vue';
</script>

<template>
<Container title="MyFursona | Login">
<Form />
<Container title="MyFursona | Login" class="login-wrapper">
<Form />
</Container>
</template>

<style lang="scss">
.login-wrapper {
height: calc(100vh - 7rem);
}
</style>

0 comments on commit 628d971

Please sign in to comment.