Updated frontend styles for buttons

This commit is contained in:
Peter Zimon 2021-11-12 11:50:07 +01:00
parent 39f01f4925
commit 8714b4e2b7
2 changed files with 17 additions and 12 deletions

@ -1 +1 @@
Subproject commit ef915476a14b98ab7a91689abe69cba22bb3c524
Subproject commit 346c5205746e53c74396ebc254f36796ebfedb31

View File

@ -1,25 +1,30 @@
.kg-button-card {
width: 100%;
position: relative;
display: flex;
position: static;
align-items: center;
}
.kg-align-center {
width: 100%;
justify-content: center;
}
a.kg-btn {
display: inline-flex;
display: flex;
position: static;
align-items: center;
justify-content: space-between;
padding: 5px 10px;
font-size: 1.8rem;
border-radius: 5px;
padding: 0 2.0rem;
height: 4.0rem;
line-height: 4.0rem;
font-size: 1.65rem;
font-weight: 600;
text-decoration: none;
border-radius: 5px;
transition: opacity 0.2s ease-in-out;
}
a.kg-btn:hover {
opacity: 0.85;
}
a.kg-btn-accent {
background-color: var(--ghost-accent-color);
color: #fff;
}
}