chowa
Version:
UI component library based on React
32 lines (27 loc) • 755 B
CSS
/**
* @license chowa v1.1.3
*
* Copyright (c) Chowa Techonlogies Co.,Ltd.(http://www.chowa.cn).
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
.cw-container {
position: relative;
margin: auto;
padding: 0;
box-sizing: border-box; }
@media only screen and (max-width: 640px) {
.cw-container {
width: 100%;
padding: 10px; } }
@media only screen and (min-width: 640px) and (max-width: 1024px) {
.cw-container {
width: 100%;
padding: 20px; } }
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
.cw-container {
width: 960px; } }
@media only screen and (min-width: 1280px) {
.cw-container {
width: 1080px; } }