mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
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:
parent
7e2af0910e
commit
40c4342786
1 changed files with 25 additions and 0 deletions
25
core/frontend/src/cards/css/button.css
Normal file
25
core/frontend/src/cards/css/button.css
Normal 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;
|
||||
}
|
Loading…
Add table
Reference in a new issue