mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Removed the bottom margin from signed out boxes
- After some trying things out, just removed that now - There should be no more bottom spacing apart from what's in the iFrame now refs https://github.com/TryGhost/Team/issues/1747
This commit is contained in:
parent
648ecd6bae
commit
a84bcc3d30
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ const NotPaidBox = (props) => {
|
|||
};
|
||||
|
||||
return (
|
||||
<section className={`flex flex-col items-center mb-1 pt-12 pb-12 px-8 border-t-2 border-gray-100 dark:border-gray-100/10 ` + (props.isFirst && ` border-b-2`)}>
|
||||
<section className={`flex flex-col items-center pt-12 pb-12 px-8 border-t-2 border-gray-100 dark:border-gray-100/10 ` + (props.isFirst && ` border-b-2`)}>
|
||||
<h1 className={`text-center text-black text-[22px] font-sans mb-4 tracking-tight dark:text-[rgba(255,255,255,0.85)]` + (props.isFirst ? `font-semibold` : `font-bold`)}>{titleText}</h1>
|
||||
<button onClick={handleSubscribeClick} className="text-white font-sans py-3 px-5 mb-4 rounded inline-block font-medium leading-none hover:opacity-90 transition-all" style={buttonStyle}>
|
||||
Choose a plan
|
||||
|
|
|
@ -23,7 +23,7 @@ const NotSignedInBox = (props) => {
|
|||
};
|
||||
|
||||
return (
|
||||
<section className={`flex flex-col items-center mb-1 pt-12 pb-12 px-8 border-t-2 border-gray-100 dark:border-gray-100/10 ` + (props.isFirst && ` border-b-2`)}>
|
||||
<section className={`flex flex-col items-center pt-12 pb-12 px-8 border-t-2 border-gray-100 dark:border-gray-100/10 ` + (props.isFirst && ` border-b-2`)}>
|
||||
<h1 className={`text-center text-black text-[22px] font-sans mb-4 tracking-tight dark:text-[rgba(255,255,255,0.85)] ` + (props.isFirst ? `font-semibold` : `font-bold`)}>{titleText}</h1>
|
||||
<button onClick={handleSubscribeClick} className="text-white font-sans py-3 px-5 mb-4 rounded inline-block font-medium leading-none hover:opacity-90 transition-all" style={buttonStyle}>
|
||||
Subscribe now
|
||||
|
|
Loading…
Add table
Reference in a new issue