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

[READY] add btn-vortex-primary-inverse for Compare Fees btn #397

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
29 changes: 28 additions & 1 deletion App.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ div[data-rk] {
@apply h-3 !important;
top: 1.4rem !important;
}

.btn-vortex-primary {
@apply bg-blue-700;
@apply text-white;
Expand Down Expand Up @@ -125,6 +124,34 @@ div[data-rk] {
@apply border-blue-700;
}

.btn-vortex-primary-inverse {
@apply bg-white;
@apply text-blue-700;
@apply rounded-xl;
@apply border;
@apply border-blue-700;
}

.btn-vortex-primary-inverse:hover {
@apply bg-blue-700;
@apply text-white;
@apply border-blue-700;
}

.btn-vortex-primary-inverse:disabled {
@apply bg-white;
@apply text-blue-700;
@apply border-blue-700;
@apply opacity-40;
}

.btn-vortex-primary-inverse:active,
.btn-vortex-primary-inverse:focus {
@apply bg-blue-200;
@apply text-blue-700;
@apply border-blue-700;
}

.btn-vortex-secondary {
@apply text-white;
@apply bg-pink-600;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/swap/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ export const SwapPage = () => {
</section>
<div className="flex gap-3 mt-5">
<button
className="btn-vortex-secondary btn"
className="btn-vortex-primary-inverse btn"
style={{ flex: '1 1 calc(50% - 0.75rem/2)' }}
disabled={!inputAmountIsStable}
onClick={(e) => {
Expand Down
Loading