chore: tweak css code

This commit is contained in:
zerosoul
2022-03-30 23:15:17 +08:00
parent 6a7414ab8b
commit 77382723ac
3 changed files with 7 additions and 2 deletions
+6
View File
@@ -11,6 +11,12 @@ const StyledWrapper = styled.div`
border: none;
border-radius: 12px;
}
.emoji-mart-emoji {
cursor: pointer;
span {
cursor: inherit;
}
}
`;
export default function EmojiPicker({ onSelect, ...rest }) {
return (
@@ -56,7 +56,6 @@ export default function LogoutConfirmModal({ closeModal }) {
description="Are you sure want to log out this account?"
buttons={
<>
{" "}
<Button onClick={closeModal}>Cancel</Button>
<Button onClick={handleLogout} className="danger">
{exiting ? "Logging out" : `Log Out`}
+1 -1
View File
@@ -32,7 +32,7 @@ const StyledButton = styled.button`
color: #fff;
}
&.ghost {
border-color: #1fe1f9;
border: 1px solid #1fe1f9;
background: none;
color: #1fe1f9;
}