change color

This commit is contained in:
PhilReact 2024-11-23 00:27:44 +02:00
parent af631df00d
commit 6911950947
3 changed files with 6 additions and 3 deletions

View File

@ -603,7 +603,7 @@ useEffect(() => {
marginTop: 'auto',
alignSelf: 'center',
cursor: isSending ? 'default' : 'pointer',
background: isSending && 'rgba(0, 0, 0, 0.8)',
background: isSending ? 'rgba(0, 0, 0, 0.8)' : 'var(--green)',
flexShrink: 0,
padding: isMobile && '5px'
}}

View File

@ -819,7 +819,7 @@ const clearEditorContent = () => {
marginTop: 'auto',
alignSelf: 'center',
cursor: isSending ? 'default' : 'pointer',
background: isSending && 'rgba(0, 0, 0, 0.8)',
background: isSending ? 'rgba(0, 0, 0, 0.8)' : 'var(--green)',
flexShrink: 0,
padding: isMobile && '5px',

View File

@ -35,7 +35,8 @@
--bg-2: #27282c;
--bg-3: rgba(0, 0, 0, 0.1);
--unread: #B14646;
--apps-circle: #1F2023
--apps-circle: #1F2023;
--green: #5EB049;
}
body {
@ -58,6 +59,8 @@ body {
.image-container .hover-image {
opacity: 0;
height: 100px !important;
width: auto !important;
}