Skip to content

Instantly share code, notes, and snippets.

@chmac
chmac / 2019_theme.css
Last active March 3, 2020 14:41
President Muffinator - KB Update
.vc_custom_1556058139992 .wpb_wrapper > div {
margin-bottom: 10px !important;
}
.vc_custom_1556058110179 .wpb_wrapper > div {
margin-bottom: 0px !important;
}
/*Override styles - Retinafunk Mai 2018*/
@chmac
chmac / onRejected.ts
Last active May 28, 2020 12:47
JavaScript async error control flow
const work = async () => "success";
work().then(
(result) => {
console.log(result);
},
(error) => {
console.error(error);
}
);