This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<filter id="drop-shadow" width="200%" height="200%" x="-50%" y="-50%" color-interpolation-filters="sRGB"> | |
<feGaussianBlur stdDeviation="3"/> | |
<feOffset dx="2" dy="2"/> | |
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.75 0"/> | |
<feMerge> | |
<feMergeNode/> | |
<feMergeNode in="SourceGraphic"/> | |
</feMerge> | |
</filter> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable no-console, no-continue */ | |
/* eslint 'import/no-extraneous-dependencies': ['error', { optionalDependencies: false }] */ | |
const { execSync } = require('child_process') | |
const { dirname } = require('path') | |
function convertFilesToTree(files) { | |
const tree = {} | |
const dirs = [...new Set(files.map((file) => dirname(file)))] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const minWidth = 375 | |
const el = document.querySelector('meta[name="viewport"]') | |
const updateContent = () => { | |
if (window.screen.width < minWidth) { | |
el.setAttribute('content', `width=${minWidth}`) | |
} else { | |
el.setAttribute('content', 'width=device-width') | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"Package Control", | |
"Sync Settings", | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2021-02-07T10:14:15.719Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://atom.io/packages/sync-settings |
NewerOlder