diff --git a/webclient/src/Article.js b/webclient/src/Article.js
index eec67e5..f66fba2 100644
--- a/webclient/src/Article.js
+++ b/webclient/src/Article.js
@@ -44,7 +44,7 @@ function Article({ cache }) {
}, [id]);
const copyLink = () => {
- navigator.clipboard.writeText(`${story.title} ${window.location.href}`).then(() => {
+ navigator.clipboard.writeText(`${story.title}:\n${window.location.href}`).then(() => {
setCopyButtonText('\uea10');
setTimeout(() => setCopyButtonText('\ue92c'), 2000);
}, () => {
@@ -82,10 +82,7 @@ function Article({ cache }) {
-
-
{story.title}
-
-
+ {story.title}
Source: {sourceLink(story)}
diff --git a/webclient/src/Feed.js b/webclient/src/Feed.js
index edab84a..d418419 100644
--- a/webclient/src/Feed.js
+++ b/webclient/src/Feed.js
@@ -101,7 +101,7 @@ function Feed({ updateCache }) {
QotNews
- {loadingStatus &&
Fetching stories {loadingStatus.current} / {loadingStatus.total}...
}
+ {loadingStatus &&
Preloading stories {loadingStatus.current} / {loadingStatus.total}...
}
{error &&
Connection error? Click to expand.
diff --git a/webclient/src/Style-light.css b/webclient/src/Style-light.css
index c948504..272bb61 100644
--- a/webclient/src/Style-light.css
+++ b/webclient/src/Style-light.css
@@ -130,7 +130,6 @@ span.source {
.article h1 {
font-size: 1.6rem;
- margin: 0;
}
.article h2 {
@@ -270,10 +269,9 @@ span.source {
}
.copy-button {
- font: 2rem/1 'icomoon';
+ font: 1.5rem/1 'icomoon2';
background: transparent;
border: none;
cursor: pointer;
- padding: 0 0.5rem;
vertical-align: middle;
}
diff --git a/webclient/src/fonts/Fonts.css b/webclient/src/fonts/Fonts.css
index 91982fd..95ba5db 100644
--- a/webclient/src/fonts/Fonts.css
+++ b/webclient/src/fonts/Fonts.css
@@ -26,3 +26,8 @@
font-family: 'Icomoon';
src: url('icomoon.ttf') format('truetype');
}
+
+@font-face {
+ font-family: 'Icomoon2';
+ src: url('icomoon2.ttf') format('truetype');
+}
diff --git a/webclient/src/fonts/icomoon2.ttf b/webclient/src/fonts/icomoon2.ttf
new file mode 100644
index 0000000..efe7749
Binary files /dev/null and b/webclient/src/fonts/icomoon2.ttf differ