Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
qieman committed Apr 10, 2023
1 parent ba29474 commit d75b55a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
Binary file added Float.zip
Binary file not shown.
5 changes: 5 additions & 0 deletions src/contentscript/injectStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@ div[data-testid=tweetText]:hover .sola-presend-card {
font-size: 16px;
font-weight: 600;
margin-top: 20px;
color: #000;
}

.sola-presend-card .inner .err-msg {
Expand Down Expand Up @@ -414,6 +415,8 @@ div[data-testid=tweetText]:hover .sola-presend-card {
.solas-preview .badge-list .badge-show-item {
height: 38px;
width: 38px;
max-width: 38px;
min-width: 38px;
border-radius: 50%;
display: block;
margin: 0 6px;
Expand All @@ -423,6 +426,8 @@ div[data-testid=tweetText]:hover .sola-presend-card {
.solas-preview .badge-list .badge-show-item img {
height: 38px;
width: 38px;
max-width: 38px;
min-width: 38px;
display: block;
}

Expand Down
6 changes: 5 additions & 1 deletion src/popup/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ body {
top:0;
width: 100%;
height: 100%;
z-index: 99;
}

#profile-view .profile-dropdown .dropdown-list .content {
Expand Down Expand Up @@ -299,13 +300,16 @@ body {
#profile-view .badge-show .badge-show-item {
width: 50px;
height: 50px;
max-width: 50px;
min-width: 50px;
border-radius: 50%;
margin-right: 16px;
overflow: hidden;
}

#profile-view .badge-show .badge-show-item img {
width: 50px;
max-width: 50px;
min-width: 50px;
height: 50px;
display: block;
}
Expand Down
2 changes: 1 addition & 1 deletion src/utils/useSola.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function getBadgeletListByUserID (solaUserID: number) {
list = list.filter(item => {
return item.status !== 'rejected'
})
return list.slice(0, 5)
return list.slice(0, 4)
} catch (e) {
console.log(e.message)
return []
Expand Down

0 comments on commit d75b55a

Please sign in to comment.