Skip to content

Commit

Permalink
feat: update check icon
Browse files Browse the repository at this point in the history
  • Loading branch information
xupea authored and xupea committed Mar 21, 2024
1 parent 2092772 commit f36fe2f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
8 changes: 6 additions & 2 deletions popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@
<body>
<div id="app">
<div id="siderBtn" class="item">
<div class="status"><div id="siderStatus">⚫️</div></div>
<div class="status">
<div id="siderStatus"><img width="16" src="/src/assets/check.png" /></div>
</div>
<div class="content">隐藏侧边栏</div>
</div>
<div id="loginBtn" class="item">
<div class="status"><div id="loginStatus">⚫️</div></div>
<div class="status">
<div id="loginStatus"><img width="16" src="/src/assets/check.png" /></div>
</div>
<div class="content">隐藏登录提示窗口</div>
</div>
</div>
Expand Down
Binary file added src/assets/check.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 9 additions & 1 deletion src/popup/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ body {
font-size: 14px;
}

#siderStatus {
display: flex;
}

#loginStatus {
display: flex;
}

.item {
display: flex;
flex-direction: row;
Expand All @@ -27,4 +35,4 @@ body {

.content {
flex: 1;
}
}

0 comments on commit f36fe2f

Please sign in to comment.