Skip to content

Instantly share code, notes, and snippets.

@FabioCarretti
FabioCarretti / scroll-horizontal-list-mobile.css
Created August 14, 2020 15:24
When you have to swap a grid to an horizontal scrolling list on mobile, this CSS utility might be helpful.
.u-scroll-horizontal-mobile {
@media (max-width: 767px) {
white-space: nowrap;
-webkit-overflow-scrolling: touch;
overflow-x: auto;
&::-webkit-scrollbar {
display: none;
}
@bradtraversy
bradtraversy / npmcrashcourse.txt
Last active October 1, 2025 18:39
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)