Skip to content

Instantly share code, notes, and snippets.

View hewr-srood's full-sized avatar
:octocat:
Making bugs

Hewr Srood hewr-srood

:octocat:
Making bugs
View GitHub Profile
@hewr-srood
hewr-srood / css-media-queries-cheat-sheet.css
Created August 21, 2022 01:09 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@hewr-srood
hewr-srood / .eslintrc
Created September 28, 2021 12:49 — forked from radiovisual/.eslintrc
React Native AirBnB ESLint Config
{
"parser": "babel-eslint",
"plugins": [
"react",
"react-native"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true