Skip to content

Commit

Permalink
Remove useless margins (#6242)
Browse files Browse the repository at this point in the history
Don't show in changelog
  • Loading branch information
AlexandreSi committed Jan 23, 2024
1 parent b10b131 commit 9eb7216
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion newIDE/app/src/Credits/CreditsPackagesDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const CreditsPackagesDialog = ({ onClose }: Props) => {
) : !creditsPackageListingDatas ? (
<PlaceholderLoader />
) : (
<ResponsiveLineStackLayout>
<ResponsiveLineStackLayout noColumnMargin>
{creditsPackageListingDatas.map(
(creditsPackageListingData, index) => {
const { id, name, description } = creditsPackageListingData;
Expand Down
6 changes: 3 additions & 3 deletions newIDE/app/src/GameDashboard/Marketing/MarketingPlans.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import Premium from './Icons/Premium';
import GDevelopThemeContext from '../../UI/Theme/GDevelopThemeContext';
import { Column, Line } from '../../UI/Grid';
import RaisedButton from '../../UI/RaisedButton';
import CheckCircleFilled from '../../UI/CustomSvgIcons/CheckCircleFilled';
import CheckCircle from '../../UI/CustomSvgIcons/CheckCircle';
import useAlertDialog from '../../UI/Alert/useAlertDialog';
import { selectMessageByLocale } from '../../Utils/i18n/MessageByLocale';
import PlaceholderLoader from '../../UI/PlaceholderLoader';
Expand Down Expand Up @@ -335,7 +335,7 @@ const MarketingPlans = ({ game }: Props) => {
about how they increase your views.
</Trans>
</Text>
<ResponsiveLineStackLayout>
<ResponsiveLineStackLayout noColumnMargin>
{marketingPlans.map(marketingPlan => {
const {
creditsAmount: packCreditsAmount,
Expand Down Expand Up @@ -384,7 +384,7 @@ const MarketingPlans = ({ game }: Props) => {
(bulletPointByLocale, index) => (
<Column key={index} expand noMargin>
<Line noMargin alignItems="center">
<CheckCircleFilled
<CheckCircle
style={{
...styles.bulletIcon,
...(activeFeaturing
Expand Down
2 changes: 1 addition & 1 deletion newIDE/app/src/Profile/Subscription/SubscriptionDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ const SubscriptionDetails = ({
</ResponsiveLineStackLayout>
</Paper>
) : (
<ResponsiveLineStackLayout>
<ResponsiveLineStackLayout noColumnMargin>
{Object.keys(subscriptionOptions).map(key => {
const { title, description, icon } = subscriptionOptions[key];
return (
Expand Down

0 comments on commit 9eb7216

Please sign in to comment.