mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-26 04:08:01 +03:00
parent
c689414497
commit
8ddbf471dd
@ -30,6 +30,7 @@ const FrameStyles = `
|
||||
text-align: center;
|
||||
color: var(--grey0);
|
||||
line-height: 1.1em;
|
||||
text-wrap: pretty;
|
||||
}
|
||||
|
||||
.gh-portal-text-disabled {
|
||||
@ -40,6 +41,7 @@ const FrameStyles = `
|
||||
|
||||
.gh-portal-text-center {
|
||||
text-align: center;
|
||||
text-wrap: pretty;
|
||||
}
|
||||
|
||||
.gh-portal-input-label {
|
||||
|
@ -5,12 +5,26 @@ import CloseButton from '../common/CloseButton';
|
||||
import ActionButton from '../common/ActionButton';
|
||||
|
||||
export const TipsAndDonationsSuccessStyle = `
|
||||
.gh-portal-tips-and-donations .gh-portal-signup-header {
|
||||
margin-bottom: 12px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.gh-portal-tips-and-donations .gh-tips-and-donations-icon-success {
|
||||
padding: 10px 0;
|
||||
margin: 24px auto 16px;
|
||||
text-align: center;
|
||||
color: var(--brandcolor);
|
||||
width: 48px;
|
||||
margin: 0 auto;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.gh-portal-tips-and-donations .gh-tips-and-donations-icon-success svg {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
}
|
||||
|
||||
.gh-portal-tips-and-donations h1.gh-portal-main-title {
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.gh-portal-tips-and-donations .gh-portal-text-center {
|
||||
@ -28,10 +42,10 @@ const SupportSuccess = () => {
|
||||
<div className='gh-portal-content gh-portal-tips-and-donations'>
|
||||
<CloseButton />
|
||||
|
||||
<div className="gh-tips-and-donations-icon-success">
|
||||
{site.icon ? <img src={site.icon} alt={site.title} /> : <ConfettiIcon />}
|
||||
<div className="gh-portal-signup-header">
|
||||
{site.icon ? <img className="gh-portal-signup-logo" src={site.icon} alt={site.title} /> : <div className="gh-tips-and-donations-icon-success"><ConfettiIcon /></div>}
|
||||
<h1 className="gh-portal-main-title">{successTitle}</h1>
|
||||
</div>
|
||||
<h1 className="gh-portal-main-title">{successTitle}</h1>
|
||||
<p className="gh-portal-text-center">{successDescription}</p>
|
||||
|
||||
<ActionButton
|
||||
|
Loading…
Reference in New Issue
Block a user