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

Draft: Brand new design from GeneralMagicio #610

Draft
wants to merge 32 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
4c8c616
feat: added new font
pkretzschmar Aug 16, 2022
6804ad2
styles: change font style and text color
pkretzschmar Aug 16, 2022
3ab2fcd
Merge branch 'brightid-v6' into styles/new-themes
pkretzschmar Aug 16, 2022
ac059a2
feat: new images
pkretzschmar Aug 23, 2022
4432cd5
styles: added new font style
pkretzschmar Aug 23, 2022
fa8c27c
style: change button to new format
pkretzschmar Aug 23, 2022
c5617db
style: added new buttons and typography to theme
pkretzschmar Aug 23, 2022
0b5d83c
style: new colors and variables to manage light/dark theme
pkretzschmar Aug 23, 2022
5c967cb
hotfix: added new criterias
pkretzschmar Aug 23, 2022
0ae3921
styles: minor css changes
pkretzschmar Aug 23, 2022
9f086e6
style: change bright id widget to match new design
pkretzschmar Aug 23, 2022
4260221
styles: refactor cart to match new design
pkretzschmar Aug 23, 2022
4006edd
styles: refactor profile component
pkretzschmar Aug 23, 2022
dd0b5b5
styles: refactor success pages to match new design
pkretzschmar Aug 23, 2022
90b35f8
style: refactor project page
pkretzschmar Aug 23, 2022
485f1f4
hotfix: small css changes
pkretzschmar Aug 23, 2022
e6d39aa
style: refactor time-left component
pkretzschmar Aug 23, 2022
8d89b36
style: refactor about page
pkretzschmar Aug 23, 2022
4de3fb9
style: refactor join page
pkretzschmar Aug 23, 2022
b06fedc
style: refactor landing page
pkretzschmar Aug 23, 2022
82f20bc
Merge pull request #1 from GeneralMagicio/styles/new-themes
pkretzschmar Aug 24, 2022
c7d687d
mobile home
luizakp Aug 26, 2022
c6c7b6a
home page mobile
luizakp Aug 26, 2022
22a6151
fix padding to be equal
luizakp Sep 6, 2022
c3ab362
typos
luizakp Sep 6, 2022
46f357c
minor responsiveness issues
luizakp Sep 6, 2022
46bfdfc
project add scroll fix
luizakp Sep 8, 2022
62caec7
yuetloo feedback
luizakp Sep 9, 2022
b143836
verify page
luizakp Sep 9, 2022
9534584
minor fix
luizakp Sep 12, 2022
6bf3eee
project tag lightmode
luizakp Sep 12, 2022
c3dcc8e
Merge pull request #554 from GeneralMagicio/fix-reponsive
yuetloo Dec 15, 2022
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
typos
luizakp committed Sep 6, 2022
commit c3ab362846c2d82150504d853a7e2174da4918f8
2 changes: 1 addition & 1 deletion vue-app/src/components/CriteriaModal.vue
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<div class="container">
<div>
<div class="flex-row">
<h2>Buidl Round criteria</h2>
<h2>Buidl round criteria</h2>
</div>
<p>
For this pilot round, admins will remove any projects that don’t meet
4 changes: 2 additions & 2 deletions vue-app/src/components/RecipientSubmissionWidget.vue
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<div class="tx-container">
<div class="recipient-submission-widget">
<loader v-if="isLoading" />
<!-- <div
<div
:class="
isWaiting || txError
? 'tx-progress-area'
@@ -19,7 +19,7 @@
Something failed: {{ txError }}<br />
Check your wallet or {{ blockExplorerLabel }} for more info.
</div>
</div> -->
</div>
<div class="connected">
<div
class="text-base total-title"
20 changes: 17 additions & 3 deletions vue-app/src/views/JoinLanding.vue
Original file line number Diff line number Diff line change
@@ -18,13 +18,15 @@
</div>
<div class="subtitle mt2" id="subtitle">
Check out these
<links to="https://ethereum.org/en/community/grants/"
<links class="link-join" to="https://ethereum.org/en/community/grants/"
>other ways to source funding</links
>. Or follow us on Twitter for updates about future rounds:
<links to="https://twitter.com/clrfund">@clrfund</links>
<links class="link-join" to="https://twitter.com/clrfund"
>@clrfund</links
>
</div>
<div class="btn-container">
<links to="/" class="btn-primary">Home</links>
<links to="/" class="btn-primary button-join">Home</links>
</div>
</div>

@@ -269,6 +271,10 @@ export default class JoinLanding extends Vue {
width: 100%;
mix-blend-mode: luminosity;

@media (max-width: $breakpoint-l) {
right: 0;
}

@media (max-width: $breakpoint-m) {
width: 100%;
padding-bottom: 0rem;
@@ -290,6 +296,14 @@ export default class JoinLanding extends Vue {
}
}

.link-join {
color: var(--text-color);
}

.button-join {
background-color: $clr-purple;
}

.breadcrumbs {
position: relative;
z-index: 1;
8 changes: 6 additions & 2 deletions vue-app/src/views/Landing.vue
Original file line number Diff line number Diff line change
@@ -151,10 +151,12 @@
of the Ethereum Community.
</p>
<p class="text-body">
<links to="/about">clr.fund forum</links>
<links to="https://forum.clr.fund/">clr.fund forum</links>
</p>
<p class="text-body">
<links to="/about">Fork your own CLR ↗</links>
<links to="https://github.com/clrfund/monorepo/"
>Fork your own CLR</links
>
</p>
</div>
</div>
@@ -551,6 +553,8 @@ ol li::before {
width: 100%;
align-items: center;
.bridge {
max-height: 830px;
max-width: 1550px;
position: absolute;
width: calc(95vw - 8rem);
height: auto;