-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RNMobile] Adjust new borders implementations to columns PR (#21073)
* adjustments for Columns block to adapt new bordering logic
- Loading branch information
Showing
7 changed files
with
41 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,17 @@ | ||
.columnsPlaceholder { | ||
padding: 12px; | ||
margin-bottom: 12px; | ||
background-color: $white; | ||
border: $border-width dashed $gray; | ||
border-radius: 4px; | ||
} | ||
|
||
.columnsPlaceholderDark { | ||
background-color: $black; | ||
border: $border-width dashed $gray-70; | ||
} | ||
|
||
.marginVerticalDense { | ||
margin-top: $block-selected-child-margin; | ||
margin-bottom: $block-selected-child-margin; | ||
} | ||
|
||
.marginHorizontalNone { | ||
margin-left: 0; | ||
margin-right: 0; | ||
} | ||
|
||
.columnsContainer { | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: flex-start; | ||
justify-content: space-between; | ||
align-items: stretch; | ||
max-width: $content-width; | ||
overflow: hidden; | ||
overflow: visible; | ||
width: 100%; | ||
} | ||
|
||
.innerBlocks { | ||
overflow: visible; | ||
} | ||
|
||
.innerBlocksSelected { | ||
margin-bottom: $block-edge-to-content; | ||
} |