_editor_after.scss
1 year ago
_editor_after_admin_sidebar.scss
5 months ago
_editor_before.scss
2 weeks ago
_editor_before_animation.scss
9 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
9 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
2 years ago
_editor_before_icons.scss
3 years ago
_editor_before_navigation.scss
2 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
9 months ago
_editor_common_core.scss
3 months ago
_variables.scss
1 year ago
editor-block-build-marge.scss
2 weeks ago
_editor_before_button-outer.scss
44 lines
| 1 | // button横並びブロック |
| 2 | .vk_buttons { |
| 3 | .block-editor-inner-blocks { |
| 4 | width: 100%; |
| 5 | } |
| 6 | |
| 7 | .vk_buttons_col { |
| 8 | display: block; |
| 9 | margin-left: 0; |
| 10 | |
| 11 | .block-editor-block-list__layout { |
| 12 | display: flex; |
| 13 | align-items: center; |
| 14 | flex-wrap: wrap; |
| 15 | clear: both; // To be cope with inline image float and so on. |
| 16 | gap: 8px; |
| 17 | } |
| 18 | |
| 19 | &-justify-left { |
| 20 | .block-editor-block-list__layout { |
| 21 | justify-content: flex-start; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | &-justify-center { |
| 26 | .block-editor-block-list__layout { |
| 27 | justify-content: center; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | &-justify-right { |
| 32 | .block-editor-block-list__layout { |
| 33 | justify-content: flex-end; |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | &-justify-space-between { |
| 38 | .block-editor-block-list__layout { |
| 39 | justify-content: space-between; |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | } |
| 44 |