This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
redemption/source/css/base/_media.scss

35 lines
544 B
SCSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@media (max-width: 320px) {
}
// // 超小屏幕(手机,小于 768px
// @media (min-width: 320px) and (max-width: 768px) {
// }
// // 小屏幕(平板,大于等于 768px
// @media (min-width: 768px) and (max-width: 768px) {
// }
// // 中等屏幕(桌面显示器,大于等于 992px
// @media (min-width: 992px) and (max-width: 992px) {
// }
// // 大屏幕(大桌面显示器,大于等于 1200px
// @media (min-width: 1200px) {
// }