mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-06-18 03:58:36 +08:00
25 lines
325 B
CSS
25 lines
325 B
CSS
.cra-container {
|
|
padding-right: 15px;
|
|
padding-left: 15px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.cra-container {
|
|
width: 750px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.cra-container {
|
|
width: 970px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.cra-container {
|
|
width: 1170px;
|
|
}
|
|
}
|