This website works better with JavaScript.
Explore
Help
Sign In
mirrors
/
devdocs
mirror of
https://github.com/freeCodeCamp/devdocs
Watch
1
Star
0
Fork
You've already forked devdocs
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
raven
devdocs
/
assets
/
stylesheets
/
global
/
_mixins.scss
16 lines
136 B
Raw
Permalink
Blame
History
//
// Mixins
//
@mixin
print
{
@media
print
{
@content
;
}
}
@mixin
mobile
{
@media
(
max-width
:
800
px
)
{
@content
;
}
}
Reference in new issue
View Git Blame
Copy Permalink