Skip to content

Instantly share code, notes, and snippets.

View manggaraaaa's full-sized avatar
💡
Hai!

Muhammad Ari Anggara manggaraaaa

💡
Hai!
View GitHub Profile
@rbayuokt
rbayuokt / _breakpoints.scss
Last active October 29, 2020 09:02
Easy Breakpoints For SASS
/*********************
* BREAKPOINTS FOR SASS
* @author : Rizky Bayu Oktavian
* @twitter : @rbayuokt
*********************/
@mixin phone {
@media screen and (min-width: 320px) and (max-width: 480px){
@content;
}