add responsividade

This commit is contained in:
EsioFreitas 2023-01-25 19:44:39 -03:00
parent f3aaf5fc14
commit c643cab0e0
12 changed files with 3895 additions and 41 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 744 KiB

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@ -4,8 +4,9 @@
@tailwind utilities; @tailwind utilities;
#app { #app {
width: 100%;
margin: 0 auto; margin: 0 auto;
padding: 2rem 4rem; padding: 2rem;
height: fit-content; height: fit-content;
min-height: 100vh; min-height: 100vh;
background-image: url( './bg.svg' ); background-image: url( './bg.svg' );

View File

@ -77,7 +77,7 @@ p {
} }
.text { .text {
@apply text-gray-800 text-center; @apply text-white text-center;
} }
.blur-container-row { .blur-container-row {
@apply flex flex-row justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-8 w-1/3; @apply flex flex-row justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-8 w-1/3;

View File

@ -180,7 +180,7 @@ p {
} }
.text { .text {
@apply text-gray-800 text-center; @apply text-white text-center;
} }
.blur-container-row { .blur-container-row {
@apply flex flex-row justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-8 w-1/3; @apply flex flex-row justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-8 w-1/3;

View File

@ -55,7 +55,7 @@ const props = defineProps({
} }
.text { .text {
@apply text-gray-800 text-center; @apply text-white text-center;
} }
.blur-container { .blur-container {

View File

@ -199,7 +199,7 @@ h2 {
} }
.text { .text {
@apply text-gray-800 text-center; @apply text-white text-center;
} }
.blur-container { .blur-container {

View File

@ -215,7 +215,7 @@ watch(networkName, (): void => {
} }
.text { .text {
@apply text-gray-800 text-center; @apply text-white text-center;
} }
.blur-container { .blur-container {

View File

@ -122,7 +122,7 @@ const handleInputEvent = (event: any): void => {
} }
.text { .text {
@apply text-gray-800 text-center; @apply text-white text-center;
} }
.blur-container { .blur-container {

View File

@ -67,7 +67,7 @@ p {
} }
.text { .text {
@apply text-gray-800 text-center; @apply text-white text-center;
} }
.blur-container-row { .blur-container-row {
@apply flex flex-row justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-8 w-1/3; @apply flex flex-row justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-8 w-1/3;

View File

@ -45,7 +45,7 @@ const handleButtonClick = async (
</script> </script>
<template> <template>
<div class="page"> <div class="page w-full">
<div class="text-container"> <div class="text-container">
<span class="text font-extrabold text-5xl max-w-[29rem]" <span class="text font-extrabold text-5xl max-w-[29rem]"
>Venda cripto e receba em Pix</span >Venda cripto e receba em Pix</span
@ -59,7 +59,7 @@ const handleButtonClick = async (
<div <div
class="flex flex-col w-full bg-white px-10 py-5 rounded-lg border-y-10" class="flex flex-col w-full bg-white px-10 py-5 rounded-lg border-y-10"
> >
<div class="flex justify-between w-full items-center"> <div class="flex justify-between items-center">
<input <input
type="number" type="number"
v-model="offer" v-model="offer"
@ -131,11 +131,11 @@ const handleButtonClick = async (
} }
.text { .text {
@apply text-gray-800 text-center; @apply text-white text-center;
} }
.blur-container { .blur-container {
@apply flex flex-col justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-10; @apply flex flex-col justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-10 w-auto;
} }
input[type="number"] { input[type="number"] {

View File

@ -96,7 +96,7 @@ const openItem = (index: number) => {
<div class="flex justify-between w-10/12 mt-20"> <div class="flex justify-between w-10/12 mt-20">
<div> <div>
<h1 class="text-3xl text-gray-800 font-bold">Sumário</h1> <h1 class="text-3xl text-white font-bold">Sumário</h1>
<h3 <h3
:class="index == selectedSection ? 'selected-sumario' : 'sumario'" :class="index == selectedSection ? 'selected-sumario' : 'sumario'"
v-for="(f, index) in faq" v-for="(f, index) in faq"
@ -121,10 +121,10 @@ const openItem = (index: number) => {
class="mr-3" class="mr-3"
v-if="item.isOpen" v-if="item.isOpen"
/> />
<h4>{{ item.title }}</h4> <h4 class="text-white">{{ item.title }}</h4>
</div> </div>
<div <div
style="padding-top: 24px" style="padding-top: 24px; color: white"
v-if="item.isOpen" v-if="item.isOpen"
v-html="item.content" v-html="item.content"
></div> ></div>
@ -155,12 +155,8 @@ const openItem = (index: number) => {
margin: 24px 0; margin: 24px 0;
} }
p, h3 {
h2, @apply text-white;
h3,
h4 {
@apply text-gray-800 text-xl;
color: #1f2937;
} }
h2, h2,
@ -173,7 +169,7 @@ h4 {
} }
.text { .text {
@apply text-gray-800 text-center; @apply text-white text-center;
} }
.blur-container-row { .blur-container-row {
@apply flex flex-row justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-8 w-1/3; @apply flex flex-row justify-center items-center px-8 py-6 gap-2 rounded-lg shadow-md shadow-gray-600 backdrop-blur-md mt-8 w-1/3;

3857
yarn.lock

File diff suppressed because it is too large Load Diff