Skip to content

Commit 7d04546

Browse files
committed
MC-4254: Text Height Inconsistency On Stage & Storefront
- fix spacing in blocks & dynamic blocks
1 parent e017a31 commit 7d04546

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

app/code/Magento/PageBuilder/view/frontend/web/css/source/content-type/_import.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// _____________________________________________
99

1010
@import 'banner/_import.less';
11+
@import 'block/_import.less';
1112
@import 'buttons/_import.less';
1213
@import 'button-item/_import.less';
1314
@import 'column/_import.less';
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// /**
2+
// * Copyright © Magento, Inc. All rights reserved.
3+
// * See COPYING.txt for license details.
4+
// */
5+
6+
//
7+
// Default appearance styles
8+
// _____________________________________________
9+
10+
[data-role$='block'] {
11+
.block {
12+
p:last-child {
13+
margin-bottom: 1rem;
14+
margin-top: 0rem;
15+
}
16+
}
17+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// /**
2+
// * Copyright © Magento, Inc. All rights reserved.
3+
// * See COPYING.txt for license details.
4+
// */
5+
6+
//
7+
// _import imports all appearance less files
8+
// _____________________________________________
9+
10+
@import './_default.less';

0 commit comments

Comments
 (0)