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:
parent
ab60eed6fe
commit
12599c282a
2 changed files with 10 additions and 2 deletions
|
@ -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) {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
`;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue