Browse Source

docs: fix incorrect styles (#42992)

* docs: fix incorrect styles

* chore: update
pull/42998/head
未觉雨声 1 year ago
committed by GitHub
parent
commit
43d2a7fa19
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .dumi/theme/common/styles/BrowserMockup.tsx
  2. 2
      .dumi/theme/common/styles/Reset.tsx
  3. 2
      .dumi/theme/common/styles/Responsive.tsx

2
.dumi/theme/common/styles/BrowserMockup.tsx

@ -47,7 +47,7 @@ export default () => (
top: -1.6em;
left: 5.5em;
display: block;
width: ~'calc(100% - 6em)';
width: calc(100% - 6em);
height: 1.2em;
background-color: white;
border-radius: 2px;

2
.dumi/theme/common/styles/Reset.tsx

@ -53,7 +53,7 @@ export default () => {
font-family: ${token.fontFamily};
line-height: ${token.lineHeight};
background: ${token.colorBgContainer};
transition: background 1s cubic-bezier(0.075, 0.82, 0.165, 1);
transition: background-color 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
`}
/>

2
.dumi/theme/common/styles/Responsive.tsx

@ -87,7 +87,7 @@ export default () => {
}
.prev-next-nav {
width: ~'calc(100% - 32px)';
width: calc(100% - 32px);
margin-left: 16px;
.ant-row-rtl & {

Loading…
Cancel
Save