mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-28 07:04:10 +00:00
* fix: make documentation, folder docs and collection docs edit button sticky * Update packages/bruno-app/src/components/CollectionSettings/StyledWrapper.js Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update packages/bruno-app/src/components/CollectionSettings/StyledWrapper.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update packages/bruno-app/src/components/FolderSettings/StyledWrapper.js Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * refactor: move sticky edit button styles to specific doc components * style: clean up redundant css rules in markdown-body * Update packages/bruno-app/src/components/CollectionSettings/Docs/StyledWrapper.js Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
max-width: 800px;
|
|
position: relative;
|
|
|
|
.markdown-body {
|
|
height: auto !important;
|
|
overflow-y: visible !important;
|
|
}
|
|
|
|
div.tabs {
|
|
div.tab {
|
|
padding: 6px 0px;
|
|
border: none;
|
|
border-bottom: solid 2px transparent;
|
|
margin-right: ${(props) => props.theme.tabs.marginRight};
|
|
color: ${(props) => props.theme.colors.text.subtext0};
|
|
cursor: pointer;
|
|
|
|
&:focus,
|
|
&:active,
|
|
&:focus-within,
|
|
&:focus-visible,
|
|
&:target {
|
|
outline: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
&:hover {
|
|
color: ${(props) => props.theme.tabs.active.color} !important;
|
|
}
|
|
|
|
&.active {
|
|
font-weight: ${(props) => props.theme.tabs.active.fontWeight} !important;
|
|
color: ${(props) => props.theme.tabs.active.color} !important;
|
|
border-bottom: solid 2px ${(props) => props.theme.tabs.active.border} !important;
|
|
}
|
|
}
|
|
}
|
|
table {
|
|
thead,
|
|
td {
|
|
border: 1px solid ${(props) => props.theme.table.border};
|
|
|
|
li {
|
|
background-color: ${(props) => props.theme.bg} !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.muted {
|
|
color: ${(props) => props.theme.colors.text.muted};
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|