1
0
forked from Kieran/snort

css fixes

This commit is contained in:
Kieran 2023-09-25 22:39:26 +01:00
parent 566f086191
commit 87f279bd77
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
3 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,9 @@
linear-gradient(90deg, #ef9644, #fd7c49, #ff5e58, #ff3b70, #ff088e, #eb00b1, #c31ed5, #7b41f6) border-box; linear-gradient(90deg, #ef9644, #fd7c49, #ff5e58, #ff3b70, #ff088e, #eb00b1, #c31ed5, #7b41f6) border-box;
} }
.note-creator-modal .modal-body { .note-creator-modal .modal-body > div {
display: flex;
flex-direction: column;
gap: 16px; gap: 16px;
} }

View File

@ -63,10 +63,8 @@
white-space: pre-wrap; white-space: pre-wrap;
} }
.details-wrapper > .name > h2 { .details-wrapper h2 {
margin: 0 0 4px 0; margin: 0;
font-weight: 600;
font-size: 21px;
} }
.details-wrapper > .name > .nip05 { .details-wrapper > .name > .nip05 {

View File

@ -276,8 +276,8 @@ export default function ProfilePage() {
function username() { function username() {
return ( return (
<> <>
<div className="name"> <div className="flex-column g4">
<h2> <h2 className="flex g4">
{user?.display_name || user?.name || "Nostrich"} {user?.display_name || user?.name || "Nostrich"}
<FollowsYou followsMe={follows.includes(loginPubKey ?? "")} /> <FollowsYou followsMe={follows.includes(loginPubKey ?? "")} />
</h2> </h2>