Snippets Collections
/* Media Queries */

$small: screen and (min-width: 0em);

$medium: screen and (min-width: 40em) and (max-width: 4em);
4
$large: screen and (min-width: em);
5
​
6
@mixin for-size($size) {
7
  @if $size == small {

    @media screen and (min-width: 40rem) { @content; }

  } @else if $size == medium {

    @media screen and (min-width: 64em) { @content; }

  } @else if $size == large {

    @media screen and (min-width: 75em) { @content; }

  }  

}

​

/*

// usage

.my-box {

  padding: 10px;
React
Vue 3
Svelte
Angular

modern css frameworks:
------------------------
tailwind 
bootstrap
materialize
material design lite
bulma
skeleton (most minimal)
pure css (min)
iu kit
star

Sat Mar 04 2023 18:41:45 GMT+0000 (Coordinated Universal Time) https://codepen.io/wander031180/pen/XWBKJOY

#scss #css #framework
star

Thu Jul 29 2021 05:35:28 GMT+0000 (Coordinated Universal Time) https://yashaswipatil.hashnode.dev/10-most-used-css-frameworks-by-web-developers

#css #framework
star

Tue Dec 08 2020 13:46:23 GMT+0000 (Coordinated Universal Time)

#css #framework

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension