mirror of
https://git.hexahost.dev/smueller/HexaHost-Frontend.git
synced 2026-06-02 10:08:44 +00:00
18 lines
376 B
CSS
18 lines
376 B
CSS
.btn-tertiary {
|
|
color: var(--text-primary);
|
|
background: transparent;
|
|
border: 1px solid rgba(255, 255, 255, 0.25);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-tertiary:hover {
|
|
border-color: var(--primary-color);
|
|
color: var(--primary-color);
|
|
background: rgba(255, 81, 249, 0.08);
|
|
}
|
|
|
|
.it-services-actions {
|
|
justify-content: center;
|
|
margin-top: 2rem;
|
|
}
|