From f4b4daba1b5f2925dcddf505ea1baf36b6cb705a Mon Sep 17 00:00:00 2001 From: amy Date: Wed, 9 Oct 2024 14:08:12 +0330 Subject: [PATCH] improved a lot --- .gitignore | 2 + src/components/friends.astro | 148 ++++++++++++++++++++++++++--------- 2 files changed, 115 insertions(+), 35 deletions(-) diff --git a/.gitignore b/.gitignore index 016b59e..cbaa0c5 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ pnpm-debug.log* # jetbrains setting folder .idea/ +pnpm-lock.yaml +#god forbid someone runs pnpm i \ No newline at end of file diff --git a/src/components/friends.astro b/src/components/friends.astro index a3d5432..408bdd8 100644 --- a/src/components/friends.astro +++ b/src/components/friends.astro @@ -1,40 +1,118 @@ --- -import FriendButton from "../components/Friendbutton.astro" +import FriendButton from "../components/Friendbutton.astro"; --- +
-

Friends Sites!

- - - - - - - - - - - - - - - - - - - - +

Friends Sites!

+
+ this person owns me ->> +
+
+ + + + + + + + + + + + + + + + + + +
\ No newline at end of file + .friends { + margin: 0.5rem; + margin-left: 10rem; + margin-right: 10rem; + display: flex; + flex-wrap: wrap; + justify-content: center; + gap: 0.5rem; + image { + width: 5rem; + } + } + .amy { + display: flex; + justify-content: center; + align-items: center; + gap: 1em; + } + -- 2.45.2