mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 00:29:12 +08:00
b926c535ea
* chore: rm color-less * refactor: MV theme to variable * docs: fix header * chore: clean up * chore: enable esbuild
36 lines
464 B
Plaintext
36 lines
464 B
Plaintext
@import (reference) '../../../../../components/style/themes/index.less';
|
|
|
|
.home-banner-background {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
|
|
> * {
|
|
width: 100%;
|
|
height: 100%;
|
|
vertical-align: top;
|
|
}
|
|
|
|
> img {
|
|
display: block;
|
|
}
|
|
|
|
> svg {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (min-width: @screen-sm-min) {
|
|
.home-banner-background {
|
|
> img {
|
|
display: none;
|
|
}
|
|
|
|
> svg {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|