-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.scss
29 lines (20 loc) · 913 Bytes
/
index.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) {}
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) {}
// Large devices (desktops, 992px and up)
@media (min-width: 992px) {}
// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {}
// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) {}
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) and (max-width: 767.98px) {}
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) and (max-width: 991.98px) {}
// Large devices (desktops, 992px and up)
@media (min-width: 992px) and (max-width: 1199.98px) {}
// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {}