mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 17:59:57 +08:00
882cec62d6
* docs: Add components overview page * fix detail * remove ContributorsList form overview page * fix components url * improve code style * remove extra file * fix detail * fix lint * fix lint * docs: Finish components overview page * fix lint * docs: Update cover * fix lint * update cover * update menu * improve overview page * refactor code * fix order * update title * add components count * fix overview page ssr bug * move less file * update title margin Co-authored-by: arvinxx <arvinx@foxmail.com>
29 lines
506 B
Plaintext
29 lines
506 B
Plaintext
@import '../../../../components/style/themes/default.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;
|
|
}
|
|
}
|
|
}
|