Spaces:
Running
Running
File size: 695 Bytes
e9b63e6 8fba2a6 e9b63e6 1ce4fbf e9b63e6 8fba2a6 e9b63e6 8fba2a6 e9b63e6 | 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 | @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(--focus-color);
background-color: transparent;
transition: all var(--transition-speed-default) var(--bezier-custom);
}
.chatButton:hover {
background-color: var(--focus-color);
border: 1px solid var(--border-color-default);
border-color: var(--focus-color);
transform: translateY(-2px);
}
.chatButton:active {
background-color: var(--color-primary-hover);
transform: translateY(0px);
}
|