响应式设计真香,用Sass写断点超方便
css
@mixin respond-to($breakpoint) {
@if $breakpoint == small {
@media (max-width: 600px) { @content; }
}
}
登录/注册