mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 08:09:13 +08:00
b926c535ea
* chore: rm color-less * refactor: MV theme to variable * docs: fix header * chore: clean up * chore: enable esbuild
47 lines
725 B
Plaintext
47 lines
725 B
Plaintext
@import (reference) '../../../../../components/style/themes/index.less';
|
|
|
|
.home-card-logo {
|
|
position: relative;
|
|
display: inline-block;
|
|
max-width: 500px;
|
|
margin: 0 32px;
|
|
cursor: pointer;
|
|
|
|
.home-card-logo-icon {
|
|
position: absolute;
|
|
top: -38px;
|
|
left: 339px;
|
|
display: none;
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
|
|
.home-banner-mini {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.home-banner-normal {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (min-width: @screen-sm-min) {
|
|
.home-card-logo {
|
|
height: 90px;
|
|
vertical-align: top;
|
|
|
|
.home-banner-mini {
|
|
display: none;
|
|
}
|
|
|
|
.home-banner-normal {
|
|
display: block;
|
|
}
|
|
|
|
.home-card-logo-icon {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|