WL-17 Hero responsiveness

This commit is contained in:
2020-10-27 00:30:08 +01:00
parent 425ab7a639
commit 2044a7c89e
2 changed files with 11 additions and 5 deletions

View File

@@ -1,13 +1,15 @@
<template>
<div
class="h-screen rounded-b-3xl shadow-xl bg-gradient-to-r from-blue-300 to-blue-700 flex items-center"
class="HeroWrapper rounded-b-3xl shadow-xl bg-gradient-to-r from-blue-300 to-blue-700 flex items-center"
>
<div class="rounded-3xl bg-white w-1/2 mx-auto p-6 shadow-xl text-center">
<div
class="rounded-3xl bg-white w-3/4 sm:w-1/2 max-w-lg mx-auto p-6 shadow-xl text-center"
>
<Logo />
<h1 class="font-mono text-2xl">
wazo-lab.io
</h1>
<div class="mt-4">
<div class="mt-4 hidden sm:block">
<a
href="#projects"
target="_self"
@@ -33,4 +35,8 @@
export default {};
</script>
<style></style>
<style>
.HeroWrapper {
height: 460px;
}
</style>