Skip to content

Instantly share code, notes, and snippets.

View zetareticoli's full-sized avatar
👨‍💻
Building stuff on the web

Francesco Improta zetareticoli

👨‍💻
Building stuff on the web
View GitHub Profile
# Pattern name
Succinct description of the pattern
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: ::
:: Live Pattern Demo ::
:: ::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
@zetareticoli
zetareticoli / gist:71b3ea255628d988e1e725155ea8bcf7
Created April 3, 2020 07:37
Update the local list of remote branches
git remote update origin --prune
@zetareticoli
zetareticoli / grid-horizontal-scroll.css
Created April 27, 2020 15:14
Horizontal scroll with grid
.parent {
display: grid;
grid-gap: 16px;
padding: 16px;
grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
grid-auto-flow: column;
grid-auto-columns: minmax(160px,1fr);
overflow-x: auto;
}
@zetareticoli
zetareticoli / gist:f2e852c99574fb7ed6c2d3c871742eb1
Created January 12, 2021 17:55
Force git to use config settings
git config --global user.useConfigOnly true