1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 02:12:38 +01:00

Update Button.tsx

This commit is contained in:
Puyodead1 2023-12-15 11:21:41 -05:00 committed by GitHub
parent 7a907d38ec
commit c598875a75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ export default styled.button<Props>`
border: none;
transition: background 0.2s ease-in-out;
cursor: ${(props) => (props.disabled ? "not-allowed" : "pointer")};
opacity: ${(props) => (props.disabled ? 0.5 : 1)};
opacity: ${(props) => (props.disabled ? 0.5 : 1)}
font-weight: var(--font-weight-bold);
${(props) => {