I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
NOTE: This is a copy of AcademicHacker's post on College Confidential, which is currently unavailable. I have edited it for clarity, but it is otherwise unchanged.
This file contains 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
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
To achieve this you can use Laravel Mix
- Ensure that Node.js and NPM are installed: run
node -v
andnpm -v
. - Install Laravel Mix
npm install
. - Open webpack.mix.js and add
mix.browserSync('127.0.0.1:8000');
. - Run
php artisan serve
. - And the
npm run watch
.