mirror of
https://github.com/Redocly/redoc.git
synced 2025-07-11 00:32:36 +03:00
fix: "API Docs By Redocly" overlapping last element in sidebar (#2132)
This commit is contained in:
parent
c24b31b228
commit
c60c6f5891
|
@ -84,6 +84,10 @@ export const MenuItemUl = styled.ul<{ expanded: boolean }>`
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
padding-bottom: 32px;
|
||||||
|
}
|
||||||
|
|
||||||
& & {
|
& & {
|
||||||
font-size: 0.929em;
|
font-size: 0.929em;
|
||||||
}
|
}
|
||||||
|
@ -169,13 +173,13 @@ export const MenuItemTitle = styled.span<{ width?: string }>`
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const RedocAttribution = styled.div`
|
export const RedocAttribution = styled.div`
|
||||||
${({ theme }) => `
|
${({ theme }) => css`
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
margin-top: ${theme.spacing.unit * 2}px;
|
margin-top: ${theme.spacing.unit * 2}px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: ${theme.sidebar.width};
|
width: ${theme.sidebar.width};
|
||||||
bottom: 0px;
|
bottom: 0;
|
||||||
background: ${theme.sidebar.backgroundColor};
|
background: ${theme.sidebar.backgroundColor};
|
||||||
|
|
||||||
a,
|
a,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user