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

Minor changes to class names #465

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
18 changes: 17 additions & 1 deletion apps/landing/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,29 @@
margin: 120px auto 0 auto;
}

.bento__mobile {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 60px;
margin: 80px auto 0 auto;
}

.bento__container {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 25px;
width: 100%;
}

.bento__container__mobile {
/* width: 100%; */
display: flex;
flex-direction: column;
gap: 25px;
}

.bento__base__card {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -1098,4 +1114,4 @@ ul li {
.newsletter input:focus {
outline: none;
border: 1px solid #eaecf0;
}
}
23 changes: 10 additions & 13 deletions apps/landing/src/pages/landing/Landing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,24 +240,21 @@ const toggleQuestionItem = (index: number) => {
</section>

<!-- Hide this section on small screens for now -->
<section class="bento md-lg:hidden">
<section class="bento__mobile md-lg:hidden">
<div class="overview__header">
<h2 class="csm:hidden">
One place to connect your wallets, <br> stake, withdraw, and see your analytics.
</h2>
<h2 class="md-lg:hidden">
One place to connect your wallets, stake, withdraw, and see your analytics.
</h2>
</div>
<div class="bento__container">
<div class="bento__container__mobile">
<div class="bento__base__card bento__card__1">
<h2 class="text-6">
Track all of your historical balances, rewards, and <br> withdrawals in one dashboard.
Connect any number of wallets at the same time.
</h2>
<div><img src="/analytics-chart.png"></div>
<div><img src="/multi-wallet.png"></div>
</div>

<div class="bento__base__card bento__card__4">
<div class="bento__base__card bento__card__2">
<h2 class="text-6">
Natively stake or withdraw ETH.
</h2>
Expand All @@ -266,16 +263,16 @@ const toggleQuestionItem = (index: number) => {

<div class="bento__base__card bento__card__3">
<h2 class="text-6">
Get your transaction history <br> for any connected address.
Track all of your historical balances, rewards, and <br> withdrawals in one dashboard.
</h2>
<div><img src="/tx.png"></div>
<div><img src="/analytics-chart.png"></div>
</div>

<div class="bento__base__card bento__card__2">
<div class="bento__base__card bento__card__4">
<h2 class="text-6">
Connect any number of wallets at the same time.
Get your transaction history <br> for any connected address.
</h2>
<div><img src="/multi-wallet.png"></div>
<div><img src="/tx.png"></div>
</div>
</div>
</section>
Expand Down
Loading