0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Updated mobile sizes for benefits

This commit is contained in:
Peter Zimon 2021-06-24 14:10:34 +02:00
parent ab60eed6fe
commit 12599c282a
2 changed files with 10 additions and 2 deletions

View file

@ -19,7 +19,7 @@ const DEV_MODE_DATA = {
showPopup: true,
site: Fixtures.site,
member: Fixtures.member.paid,
page: 'accountPlan'
page: 'signup'
};
export default class App extends React.Component {
constructor(props) {

View file

@ -234,7 +234,7 @@ export const ProductsSectionStyles = ({site}) => {
.gh-portal-product-card {
display: grid;
grid-template-columns: 1fr auto;
grid-template-columns: 1fr minmax(60px, auto);
grid-gap: 12px;
align-items: start;
min-height: unset;
@ -266,6 +266,8 @@ export const ProductsSectionStyles = ({site}) => {
.gh-portal-product-price {
position: relative;
justify-content: flex-end;
width: 100%;
}
.gh-portal-product-price .currency-sign {
@ -290,6 +292,12 @@ export const ProductsSectionStyles = ({site}) => {
.gh-portal-product-alternative-price {
display: none;
}
.gh-portal-product-benefits {
grid-column: 2;
margin-top: 12px;
padding: 12px 0 0;
}
}
`;
};