margin and selector placement

This commit is contained in:
Alejandro Gomez 2023-02-14 11:16:09 +01:00 committed by Kieran
parent 1240fe40fe
commit b01b5c2da1
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 6 additions and 1 deletions

View File

@ -31,7 +31,7 @@ const Bookmarks = ({ pubkey, bookmarks, related }: BookmarksProps) => {
return (
<div className="main-content">
<div className="icon-title">
<div className="mb10 flex-end">
<select
disabled={ps.length <= 1}
value={onlyPubkey}

View File

@ -584,3 +584,8 @@ button.tall {
.action-heading button {
width: 98px;
}
.flex-end {
display: flex;
justify-content: flex-end;
}