24 lines
323 B
Plaintext
24 lines
323 B
Plaintext
button {
|
|
color: var(--text);
|
|
transition: var(--transition);
|
|
|
|
&:hover {
|
|
color: var(--primary-active);
|
|
}
|
|
|
|
@media screen and (max-width: 860px) {
|
|
font-size: 30px;
|
|
}
|
|
}
|
|
|
|
.button-content {
|
|
@media screen and (max-width: 860px) {
|
|
display: none ;
|
|
}
|
|
}
|
|
|
|
fa-icon {
|
|
width: 20px;
|
|
display: inline-block;
|
|
}
|