Skip to content
Open
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
9 changes: 4 additions & 5 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,7 @@ function App() {
return (
<div className="main_page content">
<div className="container">
<div style={{ height: 100, textAlign: "center" }}><img src="/obyte-white-transparent-h100.png" style={{ height: 100 }} alt="Obyte logo" /></div>
<Title level={1} style={{ fontWeight: "bold", fontSize: width < 768 ? (width < 500 ? 46 : 72) : 72, lineHeight: "79px", textAlign: "center", marginBottom: 0, letterSpacing: "-0.05em", marginTop: width < 768 ? 10 : 20 }}>Get Me Into Obyte</Title>
<Title level={1} style={{ fontWeight: "bold", fontSize: width < 768 ? (width < 500 ? 46 : 72) : 72, lineHeight: "79px", textAlign: "center", marginBottom: 0, letterSpacing: "-0.05em", marginTop: width < 768 ? 10 : 20 }}>Get Me Into <img src="/obyte-white-transparent-h100.png" style={{ height: 100 }} alt="Obyte" title="Obyte" /></Title>
<div style={{ position: "relative" }}>
<Row style={{ marginTop: 70 }}>
<Col xs={{ span: 24, offset: 0 }} md={{ span: 11 }}>
Expand Down Expand Up @@ -274,7 +273,7 @@ function App() {
<a
href="https://obyte.org/#download"
target="_blank"
rel="noopener"
rel="noopener noreferrer"
>
Install Obyte wallet
</a> {" "}
Expand Down Expand Up @@ -331,10 +330,10 @@ function App() {
<div style={{ marginTop: 60 }}>
<SocialIcons centered />
<div style={{ textAlign: "center", marginTop: 10 }}>
Powered by <a href="https://counterstake.org" target="_blank" rel="noopener">Counterstake Bridge</a>
Powered by <a href="https://counterstake.org" target="_blank" rel="noopener noreferrer">Counterstake Bridge</a>
</div>
<div style={{ textAlign: "center", marginTop: 5, paddingBottom: 20 }}>
&copy; <a href="https://obyte.org" target="_blank" rel="noopener" style={{ color: "#fff" }}>Obyte</a>
&copy; <a href="https://obyte.org" target="_blank" rel="noopener noreferrer" style={{ color: "#fff" }}>Obyte</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/SocialIcons/SocialIcons.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const SocialIcons = ({size = "full", centered = false}) => { // type full

return (<div style={{ textAlign: "center", fontSize: 14 }}>
<div style={{ display: "flex", justifyContent: centered ? "center" : "flex-start", flexWrap: "wrap", alignItems: "center", fontSize: 18 }}>
{(size === "full" ? links : links.slice(0, 5)).map((social) => <a style={{ margin: "5px 10px", color: "#1e90ff" }} key={"link-" + social.name} target="_blank" rel="noopener" href={social.link} ><FontAwesomeIcon size="lg" icon={social.icon} /></a>)}
{(size === "full" ? links : links.slice(0, 5)).map((social) => <a style={{ margin: "5px 10px", color: "#1e90ff" }} key={"link-" + social.name} target="_blank" rel="noopener noreferrer" href={social.link} ><FontAwesomeIcon size="lg" icon={social.icon} /></a>)}
</div>
</div>)
}
4 changes: 2 additions & 2 deletions src/components/Transfer/Transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,12 @@ export const Transfer = (t) => {
<Row>
<Col lg={12}>
<div style={{ paddingLeft: 24, paddingRight: 24, paddingBottom: 24, wordBreak: "break-all" }}>
<b>Sent in</b>: <div style={{ fontFamily: "-apple-system, Roboto, Arial, sans-serif" }}><a href={getExplorerLink(src_network, txid)} target="_blank" rel="noopener">{txid}</a></div>
<b>Sent in</b>: <div style={{ fontFamily: "-apple-system, Roboto, Arial, sans-serif" }}><a href={getExplorerLink(src_network, txid)} target="_blank" rel="noopener noreferrer">{txid}</a></div>
</div>
</Col>
{claim_txid && <Col lg={12}>
<div style={{ paddingLeft: 24, paddingRight: 24, paddingBottom: 24, wordBreak: "break-all" }}>
<b>Claimed in</b>: <div style={{ fontFamily: "-apple-system, Roboto, Arial, sans-serif" }}><a href={getExplorerLink(dst_network, claim_txid)} target="_blank" rel="noopener">{claim_txid}</a></div>
<b>Claimed in</b>: <div style={{ fontFamily: "-apple-system, Roboto, Arial, sans-serif" }}><a href={getExplorerLink(dst_network, claim_txid)} target="_blank" rel="noopener noreferrer">{claim_txid}</a></div>
</div>
</Col>}
</Row>
Expand Down