Last active
January 13, 2021 07:04
-
-
Save Fanna1119/25711b6dfd7582386f79d225f934675f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<main class="hero-full"> | |
<div class="text-center text-6xl font-bold text-white hero-body"> | |
<router-view /> | |
<Footer /> | |
</div> | |
</main> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main { | |
display: block; | |
} | |
.hero-full { | |
@apply w-full h-full flex items-center justify-center flex-wrap px-4 py-10 text-center text-gray-700 dark:text-gray-200; | |
} | |
.hero-foot { | |
@apply flex-1 items-center justify-items-center flex; | |
flex-basis: 100%; | |
} | |
.hero-body { | |
@apply flex-1 flex-grow flex-shrink-0 px-4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment