+
+
@@ -42,12 +42,12 @@ SPDX-License-Identifier: AGPL-3.0-only
disableFollowControls = d"/>
- {{ i18n.ts.accept }}
- {{ i18n.ts.reject }}
+ {{ i18n.ts.accept }}
+ {{ i18n.ts.reject }}
- {{ i18n.ts.receiveFollowRequest }}
- {{ i18n.ts.receiveFollowRequest }}
+
@@ -389,6 +389,8 @@ async function updateMemo() {
// Set true to disable the follow / follow request controls
const disableFollowControls = ref(false);
+const hasFollowRequest = computed(() => user.value.hasPendingFollowRequestToYou);
+const useTallBanner = computed(() => hasFollowRequest.value && narrow.value);
async function acceptFollowRequest() {
try {
@@ -922,4 +924,12 @@ onUnmounted(() => {
grid-area: reject;
margin-left: 8px;
}
+
+.bannerContainerTall {
+ height: 200px !important;
+}
+
+.avatarTall {
+ top: 150px !important;
+}