F
F
freeman02042017-09-14 23:43:37
Layout
freeman0204, 2017-09-14 23:43:37

How to create custom scss media queries to match bootstrap?

These are the breakpoints and the width of the container from the _variables.scss file. I want to create my own media on scss that depend and are related to those that are in bootstrap in order to finish what I can’t do on bootstrap. How can I do that?

// Grid breakpoints
//
// Define the minimum dimensions at which your layout will change,
// adapting to different screen sizes, for use in media queries.

$grid-breakpoints: (
  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px
) !default;
@include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
@include _assert-starts-at-zero($grid-breakpoints);


// Grid containers
//
// Define the maximum width of `.container` for different screen sizes.

$container-max-widths: (
  sm: 540px,
  md: 720px,
  lg: 960px,
  xl: 1140px
) !default;
@include _assert-ascending($container-max-widths, "$container-max-widths");

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander Alexandrov, 2017-09-15
@freeman0204

// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575px) { ... }

// Small devices (landscape phones, less than 768px)
@media (max-width: 767px) { ... }

// Medium devices (tablets, less than 992px)
@media (max-width: 991px) { ... }

// Large devices (desktops, less than 1200px)
@media (max-width: 1199px) { ... }

https://v4-alpha.getbootstrap.com/layout/overview/...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question