Added first pass of injected css for button card

refs https://github.com/TryGhost/Team/issues/1207

- basic CSS for button card display
  - accent color for button background
  - left/center alignment
This commit is contained in:
Kevin Ansfield 2021-11-09 11:10:18 +00:00
parent 7e2af0910e
commit 40c4342786

View File

@ -0,0 +1,25 @@
.kg-button-card {
width: 100%;
position: relative;
display: flex;
align-items: center;
}
.kg-align-center {
justify-content: center;
}
.kg-btn {
display: inline-flex;
align-items: center;
justify-content: space-between;
padding: 5px 10px;
font-size: 1.8rem;
border-radius: 5px;
text-decoration: none !important;
}
.kg-btn-accent {
background-color: var(--ghost-accent-color);
color: #fff !important;
}