Unverified Commit b264f154 authored by Hong Minhee's avatar Hong Minhee
Browse files

Make handle easier to select and copy

parent 84929862
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -34,7 +34,10 @@ export default function PostList(
        <hgroup>
          <h1>{blog.title}</h1>
          <p>
            <strong>@{blog.handle}@{domain}</strong> &middot;{" "}
            <strong style="user-select: all; cursor: text;">
              @{blog.handle}@{domain}
            </strong>{" "}
            &middot;{" "}
            <a href="/followers">
              {followers === 1n ? "1 follower" : `${followers} followers`}
            </a>{" "}
+4 −1
Original line number Diff line number Diff line
@@ -21,7 +21,10 @@ export default async function FollowerList(req: Request) {
            <a href="/">{blog.title}</a>
          </h1>
          <p>
            <strong>@{blog.handle}@{domain}</strong> &middot;{" "}
            <strong style="user-select: all; cursor: text;">
              @{blog.handle}@{domain}
            </strong>{" "}
            &middot;{" "}
            {totalFollowers === 1n
              ? "1 follower"
              : `${totalFollowers} followers`} &middot; {blog.description}
+4 −1
Original line number Diff line number Diff line
@@ -81,7 +81,10 @@ export default function PostPage(
            <a href="/">{blog.title}</a>
          </h1>
          <p>
            <strong>@{blog.handle}@{domain}</strong> &middot;{" "}
            <strong style="user-select: all; cursor: text;">
              @{blog.handle}@{domain}
            </strong>{" "}
            &middot;{" "}
            <a href="/followers">
              {followers === 1n ? "1 follower" : `${followers} followers`}
            </a>{" "}