Spaces:
Running
Running
File size: 727 Bytes
e9b63e6 8fba2a6 e9b63e6 727c614 e9b63e6 727c614 e9b63e6 a56bf2f 727c614 e9b63e6 a56bf2f e9b63e6 a56bf2f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | @import "../../_variables.css";
.chatButton {
width: 90%;
margin: var(--spacing-sm);
max-height: 3em;
height: 3em;
align-items: center;
display: flex;
justify-content: center;
border-radius: var(--border-radius-sm);
border: 1px solid var(--color-chat-button-hover);
background-color: transparent;
transition: all var(--transition-speed-default) var(--bezier-custom);
cursor: pointer;
}
.inactive:hover {
background-color: var(--color-chat-button-hover);
transform: translateY(-2px);
}
.inactive:active {
background-color: var(--color-primary-hover);
transform: translateY(0px);
}
.active {
background-color: var(--color-primary);
cursor: default;
}
|