mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03: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
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…
Reference in New Issue
Block a user