mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
b445baa001
* chore(deps-dev): bump stylelint-config-prettier from 8.0.2 to 9.0.2 Bumps [stylelint-config-prettier](https://github.com/prettier/stylelint-config-prettier) from 8.0.2 to 9.0.2. - [Release notes](https://github.com/prettier/stylelint-config-prettier/releases) - [Commits](https://github.com/prettier/stylelint-config-prettier/compare/v8.0.2...v9.0.2) --- updated-dependencies: - dependency-name: stylelint-config-prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: autofix stylelint errors * chore: autofix stylelint errors Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
44 lines
654 B
Plaintext
44 lines
654 B
Plaintext
@media screen and (max-width: @screen-md) {
|
|
.@{list-prefix-cls} {
|
|
&-item {
|
|
&-action {
|
|
margin-left: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{list-prefix-cls}-vertical {
|
|
.@{list-prefix-cls}-item {
|
|
&-extra {
|
|
margin-left: 24px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: @screen-sm) {
|
|
.@{list-prefix-cls} {
|
|
&-item {
|
|
flex-wrap: wrap;
|
|
|
|
&-action {
|
|
margin-left: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{list-prefix-cls}-vertical {
|
|
.@{list-prefix-cls}-item {
|
|
flex-wrap: wrap-reverse;
|
|
|
|
&-main {
|
|
min-width: 220px;
|
|
}
|
|
|
|
&-extra {
|
|
margin: auto auto 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|