+ To see Proof of Work (lol) that your meme is on the LBRY blockchain, check it out on our blockchain explorer! Please note that it may take a couple minutes for the transaction to be confirmed.
+
+ You can also check out your meme on LBRY or Spee.ch!
+
To see Proof of Work (lol) that your meme is on the LBRY blockchain, check it out on our blockchain explorer! Please note that it may take a couple minutes for the transaction to be confirmed.
- `;
+ You are generating the claim name, so you'd know it. it would be https://open.lbry.io/claim-name#claim_id (claim id comes from the return). You can also run a claim_show with the claim id parameter to get name if that's easier. The spee.ch link would just be https://spee.ch/claimid/claimname
+ */
return socket.send(JSON.stringify({
example: data.example,
diff --git a/app/sass/init/_extends.scss b/app/sass/init/_extends.scss
index 0ae37c3..5c6ccdf 100644
--- a/app/sass/init/_extends.scss
+++ b/app/sass/init/_extends.scss
@@ -125,6 +125,41 @@
padding-bottom: 0.5rem;
}
+.button {
+ @extend .__button-padding-horizontal;
+ color: $white;
+ font-size: 1rem;
+ line-height: 2rem;
+ position: relative;
+ transition: background-color 0.2s;
+
+ &::after {
+ width: calc(100% + 2px); height: calc(100% + 2px);
+ top: -1px; left: -1px;
+
+ content: "";
+ position: absolute;
+ transition: background-color 0.2s;
+ z-index: -1;
+ }
+
+ &:not(:hover) {
+ background-color: $black;
+
+ &::after {
+ background-color: $black;
+ }
+ }
+
+ &:hover {
+ background-color: $teal;
+
+ &::after {
+ background-color: $teal;
+ }
+ }
+}
+
/*!
diff --git a/app/sass/pages/_playground.scss b/app/sass/pages/_playground.scss
index 5c18838..83dbf32 100644
--- a/app/sass/pages/_playground.scss
+++ b/app/sass/pages/_playground.scss
@@ -399,43 +399,11 @@
button,
span {
height: 100%;
- line-height: 2rem;
}
button {
width: 6rem;
-
- color: $white;
- font-size: 1rem;
- position: relative;
text-transform: lowercase;
- transition: background-color 0.2s;
-
- &::after {
- width: calc(100% + 2px); height: calc(100% + 2px);
- top: -1px; left: -1px;
-
- content: "";
- position: absolute;
- transition: background-color 0.2s;
- z-index: -1;
- }
-
- &:not(:hover) {
- background-color: $black;
-
- &::after {
- background-color: $black;
- }
- }
-
- &:hover {
- background-color: $teal;
-
- &::after {
- background-color: $teal;
- }
- }
}
input {
@@ -455,6 +423,7 @@
color: rgba($black, 0.5);
cursor: default;
font-size: 1rem;
+ line-height: 2rem;
text-align: right;
}
}
diff --git a/app/sockets.js b/app/sockets.js
index a4c3874..74ac23c 100644
--- a/app/sockets.js
+++ b/app/sockets.js
@@ -285,7 +285,7 @@ function generateMemeCreator(socket) {
`;