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

Rename preview image and update transaction button style #129

Merged
merged 4 commits into from
Sep 29, 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
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
/>
<meta
name="twitter:image"
content="https://template-dapp.multiversx.com/social.jpg"
content="https://template-dapp.multiversx.com/preview.jpg"
/>

<!-- Other Cards -->
Expand All @@ -61,7 +61,7 @@
/>
<meta
property="og:image"
content="https://template-dapp.multiversx.com/social.jpg"
content="https://template-dapp.multiversx.com/preview.jpg"
/>

<title>Template dApp</title>
Expand Down
File renamed without changes
4 changes: 2 additions & 2 deletions src/pages/Disclaimer/Disclaimer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ export const Disclaimer = () => {
of merchantability or fitness for a particular purpose. No oral advice
or written or electronically delivered information given by MultiversX
or its affiliates, or any of its staff, providers, merchants, sponsors
or licensors, or the like, shall create any warranty. Use of this
or licensors, or the like, shall create any warranty. Use this
template is at your sole risk.
</p>
<p>
In no event shall MultiversX be liable for any injury, expenses, lost
profits, loss or damage, weather direct, indirect, incidental, or
consequential, or any other pecuniary loss or expense arising out of
your access, use or inability to use this website, even if e are
your access, use or inability to use this template, even if we are
expressly advised of the possibility of such damages.
</p>
</div>
Expand Down
5 changes: 1 addition & 4 deletions src/pages/Home/Transaction/Transaction.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { faPaperPlane } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { TRANSACTIONS_ENDPOINT } from '@multiversx/sdk-dapp/apiCalls/endpoints';
import { Label } from 'components/Label';
import { ExplorerLink } from 'components/sdkDappComponents';
Expand All @@ -17,9 +15,8 @@ export const Transaction = () => {
<div className='flex flex-col gap-2 text-sm'>
<a
href={transactionUrl}
className='inline-block self-start rounded-lg px-3 py-2 text-center hover:no-underline my-0 text-gray-600 hover:bg-slate-100 mx-0'
className='self-start inline-block rounded-lg px-3 py-2 text-center hover:no-underline my-0 bg-transparent hover:bg-blue-600 text-blue-600 hover:text-white mr-0 border-solid border-blue-600 border-[1px]'
>
<FontAwesomeIcon icon={faPaperPlane} className='mr-1' />
Send transaction
</a>

Expand Down
Loading