Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【確認中】画像ブロックのスタイルのサンプルに流体シェイプのマスクのsvgがかからない問題調整 #972

Merged
merged 2 commits into from
Jan 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions inc/vk-blocks/vk-blocks-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ function vk_blocks_blocks_assets() {
// Change multiple spaces to single space.
$dynamic_css = preg_replace( '/\s(?=\s)/', '', $dynamic_css );
wp_add_inline_style( 'vk-blocks-build-css', $dynamic_css );
// --vk_image-mask-waveはコアの画像ブロックに依存するのでwp-edit-blocksを追加
wp_add_inline_style( 'wp-edit-blocks', $dynamic_css );
}
add_action( 'init', 'vk_blocks_blocks_assets', 10 );

Expand Down