_editor_after.scss
1 year ago
_editor_after_admin_sidebar.scss
5 months ago
_editor_before.scss
4 weeks ago
_editor_before_animation.scss
10 months ago
_editor_before_appender.scss
3 years ago
_editor_before_archive-list.scss
3 years ago
_editor_before_balloon.scss
2 years ago
_editor_before_border-box.scss
3 years ago
_editor_before_breadcrumb.scss
3 years ago
_editor_before_button-outer.scss
3 years ago
_editor_before_button.scss
1 year ago
_editor_before_custom-block-variation.scss
2 years ago
_editor_before_custom-css-extension.scss
2 years ago
_editor_before_faq.scss
3 years ago
_editor_before_fixed-display.scss
10 months ago
_editor_before_grid-column.scss
1 year ago
_editor_before_gridcolcard.scss
1 year ago
_editor_before_icon-card.scss
3 years ago
_editor_before_icon.scss
3 years ago
_editor_before_icon_list.scss
3 years ago
_editor_before_icons.scss
3 years ago
_editor_before_navigation.scss
4 weeks ago
_editor_before_outer.scss
7 months ago
_editor_before_select-post.scss
3 years ago
_editor_before_slider.scss
1 year ago
_editor_before_tab.scss
1 year ago
_editor_before_table.scss
3 years ago
_editor_before_template_inserter.scss
3 years ago
_editor_before_vk-heading.scss
3 years ago
_editor_before_vk-posts.scss
10 months ago
_editor_common_core.scss
4 months ago
_variables.scss
2 years ago
editor-block-build-marge.scss
4 weeks ago
_editor_before_icons.scss
47 lines
| 1 | // icon横並びブロック |
| 2 | .vk_icons { |
| 3 | .block-editor-inner-blocks { |
| 4 | width: 100%; |
| 5 | } |
| 6 | |
| 7 | .vk_icons_col { |
| 8 | display: block; |
| 9 | margin-left: 0; |
| 10 | |
| 11 | .block-editor-block-list__layout { |
| 12 | display: flex; |
| 13 | flex-wrap: wrap; |
| 14 | clear: both; // To be cope with inline image float and so on. |
| 15 | margin-left: -8px; |
| 16 | |
| 17 | .vk_icon { |
| 18 | margin: 4px 0 4px 8px; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | &-justify-left { |
| 23 | .block-editor-block-list__layout { |
| 24 | justify-content: flex-start; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | &-justify-center { |
| 29 | .block-editor-block-list__layout { |
| 30 | justify-content: center; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | &-justify-right { |
| 35 | .block-editor-block-list__layout { |
| 36 | justify-content: flex-end; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | &-justify-space-between { |
| 41 | .block-editor-block-list__layout { |
| 42 | justify-content: space-between; |
| 43 | } |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 |