// MIXINS RESPONSIVES
// Small devices
@mixin sm {
@media (min-width: #{$screen-sm-min}) {
@content;
}
// Medium devices
@mixin md {
@media (min-width: #{$screen-md-min}) {
// Large devices
@mixin lg {
@media (min-width: #{$screen-lg-min}) {
// Extra large devices
@mixin xl {
@media (min-width: #{$screen-xl-min}) {
// Extra large desktops
@mixin xxl {
@media (min-width: #{$screen-xxl-min}) {
// Custom devices
@mixin rwd($screen) {
@media (min-width: $screen+'px' ) {
@mixin container($size, $padding) {
padding-left: $padding;
padding-right: $padding;
max-width: $size;
margin:auto;
@mixin responsive() {
&-sm {
@include sm() {
&-md {
@include md() {
&-lg {
@include lg() {
&-xl {
@include xl() {
&-xxl {
@include xxl() {