mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 08:59:15 +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>
49 lines
763 B
Plaintext
49 lines
763 B
Plaintext
@import (reference) '../../../../components/style/themes/variable.less';
|
|
|
|
.components-overview {
|
|
padding: 0;
|
|
|
|
&-group-title {
|
|
margin-bottom: 24px !important;
|
|
}
|
|
|
|
&-title {
|
|
overflow: hidden;
|
|
color: @text-color;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
&-img {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 152px;
|
|
}
|
|
|
|
&-card {
|
|
cursor: pointer;
|
|
transition: all @animation-duration-base @ease-in-out;
|
|
|
|
&:hover {
|
|
box-shadow: @shadow-1-down;
|
|
}
|
|
}
|
|
}
|
|
|
|
.components-overview-search.ant-input-affix-wrapper {
|
|
width: 100%;
|
|
padding: 0;
|
|
font-size: 20px;
|
|
border: 0;
|
|
box-shadow: none;
|
|
|
|
input {
|
|
color: rgba(0, 0, 0, 0.85);
|
|
font-size: 20px;
|
|
}
|
|
|
|
.anticon {
|
|
color: #bbb;
|
|
}
|
|
}
|