diff --git a/src/index.css b/src/index.css index a699eaf4..1f4c9098 100644 --- a/src/index.css +++ b/src/index.css @@ -47,6 +47,12 @@ code { display: inline-block; } +.btn.active { + border: 2px solid; + background-color: #222; + font-weight: bold; +} + .btn:hover { background-color: #333; } @@ -141,4 +147,18 @@ div.form-group > div:first-child { .ReactModal__Body--open { overflow: hidden; +} + +.mr10 { + margin-right: 10px; +} + +.tabs { + display: flex; + margin: 10px 0; + overflow-x: auto; +} + +.tabs > div { + margin-right: 10px; } \ No newline at end of file diff --git a/src/pages/ProfilePage.css b/src/pages/ProfilePage.css index dbd1b297..f4f429c2 100644 --- a/src/pages/ProfilePage.css +++ b/src/pages/ProfilePage.css @@ -10,7 +10,7 @@ .profile .avatar { width: 256px; height: 256px; - background-size: contain; + background-size: cover; cursor: pointer; border-radius: 10px; } diff --git a/src/pages/ProfilePage.js b/src/pages/ProfilePage.js index 707ebe6b..af4f5ce1 100644 --- a/src/pages/ProfilePage.js +++ b/src/pages/ProfilePage.js @@ -167,8 +167,13 @@ export default function ProfilePage() { {isMe ? editor() : details()} -
-
Notes
+
+
Notes
+
Reactions
+
Followers
+
Follows
+
Relays
+
{notes?.sort((a, b) => b.created_at - a.created_at).map(a => )} )