mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
docs: improve home page banner style (#45459)
This commit is contained in:
parent
29551aaaba
commit
cd03c11727
@ -28,9 +28,16 @@ const useStyle = () => {
|
||||
const { direction } = React.useContext(ConfigProvider.ConfigContext);
|
||||
const isRTL = direction === 'rtl';
|
||||
|
||||
return createStyles(({ token, css }) => {
|
||||
return createStyles(({ token, css, cx }) => {
|
||||
const textShadow = `0 0 3px ${token.colorBgContainer}`;
|
||||
|
||||
const mask = cx(css`
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
backdrop-filter: blur(2.5px);
|
||||
transition: all 1s ease;
|
||||
`);
|
||||
|
||||
return {
|
||||
holder: css`
|
||||
height: 520px;
|
||||
@ -42,8 +49,14 @@ const useStyle = () => {
|
||||
overflow: hidden;
|
||||
perspective: 800px;
|
||||
row-gap: ${token.marginXL}px;
|
||||
|
||||
&:hover .${mask} {
|
||||
backdrop-filter: none;
|
||||
}
|
||||
`,
|
||||
|
||||
mask,
|
||||
|
||||
typography: css`
|
||||
text-align: center;
|
||||
position: relative;
|
||||
@ -117,6 +130,7 @@ const PreviewBanner: React.FC<PreviewBannerProps> = (props) => {
|
||||
<div className={styles.holder}>
|
||||
{/* Mobile not show the component preview */}
|
||||
{!isMobile && <ComponentsBlock className={styles.block} style={componentsBlockStyle} />}
|
||||
<div className={styles.mask} />
|
||||
|
||||
<Typography className={styles.typography}>
|
||||
<h1>Ant Design 5.0</h1>
|
||||
|
Loading…
Reference in New Issue
Block a user