Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2 #72

Closed
wants to merge 26 commits into from
Closed

v2 #72

Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b886bc6
initial commit for v2
IgorHalfeld Oct 2, 2020
9ff2414
finish MVP
IgorHalfeld Oct 4, 2020
f184472
add netifly badge
IgorHalfeld Oct 4, 2020
d41a90b
fix broken link
IgorHalfeld Oct 4, 2020
fbcc200
enhance docs
IgorHalfeld Oct 4, 2020
129b233
fix for more resolutions
IgorHalfeld Oct 4, 2020
d277fb6
add v2 label on tweet div
IgorHalfeld Oct 4, 2020
5f10520
fix vulnerabilities package-lock
IgorHalfeld Oct 4, 2020
2516227
enhance mobile layout
IgorHalfeld Oct 4, 2020
411f7ba
add donate link
IgorHalfeld Oct 5, 2020
b89cc5a
change configs for pwa module
IgorHalfeld Oct 14, 2020
0d207a4
add animation on change tweets
IgorHalfeld Oct 14, 2020
1573d8d
Chewbacca PR's
AugustoBondanca Oct 20, 2020
1cca832
update img chewbacca
AugustoBondanca Oct 20, 2020
62ed2f9
update img chewbacca
AugustoBondanca Oct 20, 2020
120257c
Merge pull request #78 from AugustoBondanca/patch-2
Oct 20, 2020
442215c
new_person(Julius - Everybody Hates Chris) (#82)
emersonjds Oct 21, 2020
c6fab3d
Footer (#75)
Trocatti Oct 30, 2020
7d60ef2
Atualizado assets do relacionado a pwa (#84)
marcotterra Oct 30, 2020
56b1066
feat: v2 dark mode (#83)
luizcieslak Oct 30, 2020
fdc5ee5
Pabllo vittar tamplate (#86)
ananeridev Oct 30, 2020
5ef5b0f
Fix: Manter tweet digitado ao trocar de template (#85)
omarkdev Nov 3, 2020
8fd7c5f
add baroes
IgorHalfeld Jan 28, 2021
cdfae54
Cria switch-box para alterar origem de Android ou iPhone (#87)
omarkdev May 30, 2021
5dda77f
Adiciona dark mode no tweet (#88)
omarkdev May 30, 2021
cac60b9
Fix scroll in homepage (#95)
rhuangabrielsantos May 30, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
enhance mobile layout
  • Loading branch information
IgorHalfeld committed Oct 4, 2020
commit 2516227903a72c7e9c8b886d632eaeaa1450be3d
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<main class="relative flex flex-col items-center justify-center w-full h-full px-12 py-5">
<custom-header class="absolute top-0 w-full px-12 py-5 mx-auto xl:w-3/5" />

<div class="self-center w-full mt-12 xl:w-3/5 grid grid-cols-12 md:mt-0">
<div class="self-center w-full mt-56 xl:w-3/5 grid grid-cols-12 md:mt-0">
<tweet-viewer
class="col-span-12 md:col-span-8 md:mr-20"
:tweet="state.currentTweet"
Expand Down
4 changes: 2 additions & 2 deletions src/components/CustomHeader/index.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<template>
<header class="flex items-center justify-between">
<div class="flex flex-col">
<h1 class="text-3xl font-bold text-brand-black">
<h1 class="text-2xl font-bold md:text-3xl text-brand-black">
PR Maneiro <small class="px-2 py-1 text-sm font-light text-white rounded-full bg-brand-primary">v2.beta</small>
</h1>
<p class="font-medium text-brand-black">
<p class="text-sm font-medium md:text-base text-brand-black">
Faça alguém feliz com um comentário no Pull Request.
</p>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/TweetViewer/index.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="flex items-center py-5">
<icon-chevron-left class="mr-5" />
<icon-chevron-left class="hidden mr-5 md:block" />

<div class="flex flex-col items-center w-full">
<div
Expand Down Expand Up @@ -53,12 +53,12 @@
<icon-share />
</div>
</div>
<p class="mt-10 text-brand-gray">
<p class="hidden mt-10 text-center text-brand-gray md:block">
*Use as setas do teclado para explorar os templates
</p>
</div>

<icon-chevron-right class="ml-5" />
<icon-chevron-right class="hidden ml-5 md:block" />
</div>
</template>

Expand Down