Skip to content

Instantly share code, notes, and snippets.

View sandeepkumardev-zz's full-sized avatar
:octocat:

Sandeep sandeepkumardev-zz

:octocat:
  • GeekyAnts
View GitHub Profile
@adrianhajdin
adrianhajdin / appStyles.js
Created December 20, 2020 15:07
Styles for an Expense Tracker Web Tutorial
import { makeStyles } from '@material-ui/core/styles';
export default makeStyles((theme) => ({
desktop: {
[theme.breakpoints.up('sm')]: {
display: 'none',
},
},
mobile: {
[theme.breakpoints.down('sm')]: {