mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-07 11:37:58 +08:00
f88f383be6
* fix: suggestion dark bg * fix: demo use autoComplete="off" * feat: support iframe theme change * fix: iframe dark theme * upd: test snapshot * fix: lint * fix: lint * tweak: use theme-switcher to handle iframe and parent * feat: support iframe theme change * fix: dark shadow * fix: layout style * fix: dark site style * fix: snapshot
51 lines
750 B
Plaintext
51 lines
750 B
Plaintext
@import '../../../../components/style/themes/default.less';
|
|
|
|
.home-container {
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4 {
|
|
&.ant-typography {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
|
|
img {
|
|
object-fit: cover;
|
|
}
|
|
|
|
.home-block-content {
|
|
margin: 88px 24px 124px;
|
|
|
|
h2.ant-typography {
|
|
margin-bottom: 56px;
|
|
}
|
|
}
|
|
|
|
.home-link-arrow {
|
|
position: relative;
|
|
margin-left: 0.3em;
|
|
font-size: 0.85em;
|
|
opacity: 0.75;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
a:hover .home-link-arrow {
|
|
transform: translateX(3px);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@media (max-width: @screen-sm-min) {
|
|
.home-container {
|
|
.home-block-content {
|
|
margin-top: 64px;
|
|
margin-bottom: 96px;
|
|
|
|
h2.ant-typography {
|
|
margin-bottom: 44px;
|
|
}
|
|
}
|
|
}
|
|
}
|