Various screen adaptation media queries

Small screen is roughly 0-480

Medium screen is roughly 481-800

Large screen is roughly 801-1400

The giant screen is roughly 1400-1920+

The medium is written as

 @media screen and (min-width: 801px) and (max-width: 1400px) {
.el-row {
  margin: 0px 8% !important;
}

}
 @media screen and (min-width: 1400px) {
.el-row {
  margin: 0px 20% !important;
}

}

Only the neutralization giant screen is written here.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325803717&siteId=291194637