Launch App button at bottom of corp home

This commit is contained in:
tim
2025-04-15 19:54:56 -04:00
parent 606e5fd2d2
commit 1e6511f137

View File

@@ -45,3 +45,33 @@ features:
details: Running on Arbitrum One means orders trade fast with cheap gas. More L2's coming soon.
---
<style>
a.VPButton-medium-brand {
border-color: var(--vp-button-brand-border);
color: var(--vp-button-brand-text);
background-color: var(--vp-button-brand-bg);
border-radius: 20px;
padding: 0 20px;
line-height: 38px;
font-size: 14px;
display: inline-block;
/*border: 1px solid transparent;*/
text-align: center;
font-weight: 600;
white-space: nowrap;
transition: color 0.25s, border-color 0.25s, background-color 0.25s;
text-decoration: none;
}
a.VPButton-medium-brand:hover {
border-color: var(--vp-button-brand-hover-border);
color: var(--vp-button-brand-hover-text);
background-color: var(--vp-button-brand-hover-bg);
}
</style>
<div style="text-align: center; margin-top: 2rem;">
<a class="VPButton-medium-brand" href="https://app.dexorder.trade/" target="dexorder-app">Launch App</a>
</div>