summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/App.vue2
-rw-r--r--src/components/ProfileInfo.vue2
-rw-r--r--src/views/Timeline.vue4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/App.vue b/src/App.vue
index 6120e2ee..b3351435 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -72,7 +72,7 @@ export default {
id: 'social-account',
classes: [],
icon: 'icon-user',
- text: t('social', 'Your account'),
+ text: t('social', 'Profile'),
router: {
name: 'profile',
params: { account: this.currentUser.uid }
diff --git a/src/components/ProfileInfo.vue b/src/components/ProfileInfo.vue
index 9e82656e..cbb2192e 100644
--- a/src/components/ProfileInfo.vue
+++ b/src/components/ProfileInfo.vue
@@ -28,7 +28,7 @@
<p>{{ accountInfo.cloudId }}</p>
<p v-if="accountInfo.website">Website: <a :href="accountInfo.website.value">{{ accountInfo.website.value }}</a></p>
- <button v-if="!serverData.public" class="primary" @click="follow">Follow this user</button>
+ <button v-if="!serverData.public" class="primary" @click="follow">Follow</button>
</div>
<ul class="user-profile--sections">
diff --git a/src/views/Timeline.vue b/src/views/Timeline.vue
index 9c1b79f0..46ff5a3f 100644
--- a/src/views/Timeline.vue
+++ b/src/views/Timeline.vue
@@ -95,7 +95,7 @@
.new-post {
display: flex;
padding: 10px;
- background-color: var(--color-main-background);
+ background-color: var(--color-main-background-translucent);
position: sticky;
top: 47px;
z-index: 100;
@@ -187,7 +187,7 @@ export default {
classes: [],
href: '#',
icon: 'icon-category-user',
- text: t('social', 'Your account')
+ text: t('social', 'Profile')
},
{
id: 'social-friends',