mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-29 18:50:00 +08:00
e8fa5938ab
* site: use CSS logical properties * Update components/anchor/demo/targetOffset.tsx Co-authored-by: afc163 <afc163@gmail.com> Signed-off-by: lijianan <574980606@qq.com> * fix: fix * fix: fix * chore: fix * fix: add more * fix: add more --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: afc163 <afc163@gmail.com>
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import React from 'react';
|
|
import { createStyles } from 'antd-style';
|
|
|
|
const useStyle = createStyles(({ token, css }) => ({
|
|
browserMockup: css`
|
|
position: relative;
|
|
border-top: 2em solid rgba(230, 230, 230, 0.7);
|
|
border-radius: ${token.borderRadiusSM}px ${token.borderRadiusSM}px 0 0;
|
|
box-shadow: 0 0.1em 0.5em 0 rgba(0, 0, 0, 0.28);
|
|
&::before {
|
|
position: absolute;
|
|
top: -1.25em;
|
|
inset-inline-start: 1em;
|
|
display: block;
|
|
width: 0.5em;
|
|
height: 0.5em;
|
|
background-color: #f44;
|
|
border-radius: 50%;
|
|
box-shadow:
|
|
0 0 0 2px #f44,
|
|
1.5em 0 0 2px #9b3,
|
|
3em 0 0 2px #fb5;
|
|
content: '';
|
|
}
|
|
&::after {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
top: -1.6em;
|
|
inset-inline-start: 5.5em;
|
|
width: calc(100% - 6em);
|
|
height: 1.2em;
|
|
background-color: #fff;
|
|
border-radius: ${token.borderRadiusSM}px;
|
|
}
|
|
& > * {
|
|
display: block;
|
|
}
|
|
`,
|
|
}));
|
|
|
|
const BrowserFrame: React.FC<React.PropsWithChildren> = ({ children }) => {
|
|
const { styles } = useStyle();
|
|
return <div className={styles.browserMockup}>{children}</div>;
|
|
};
|
|
|
|
export default BrowserFrame;
|