Skip to content

Instantly share code, notes, and snippets.

View fgeierst's full-sized avatar

Florian Geierstanger fgeierst

View GitHub Profile
@fgeierst
fgeierst / style.css
Created December 23, 2020 20:01
Fix block images aspect ratio bug (after Wordpress update 5.6)
/* fix block images aspect ratio bug */
.wp-block-image img, .wp-block-image svg {
max-width:100%;
height:auto;
}
@fgeierst
fgeierst / tasks.json
Created December 23, 2020 10:38
Run browsersync when VS Code is openend
/* put tasks.json in '__WORKINGDIRECTORY__/.vscode/' */
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Run Browsersync",
"command": "browser-sync start --f \"*.*\" --proxy \"__URL__.local\"",
"problemMatcher": [],