mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 22:45:25 +00:00
* fix: persist scroll * fix: persist scroll * chore: style * fix: remove persisted variabled from localstorage on boot * fix: persist scroll in request tabs * fix: persist scroll in folder tabs * fix: hooks for container and editor scrolls * fix: persist scroll position in response tabs * fix: persist scroll for different request bodies * fix: persist scroll for collection tabs * fix: test cases * test: scroll persists tests * tests: resolved coderabbit comments for tests * tests: resolved coderabbit comments for tests * fix: remove only * fix: test cases * fix: flaky create collection path as name * move scrollbar tests * test cases * test cases * test cases * test cases * test cases * fix: moved redundant code to common useTrackScroll function * chore: spaces * fix: move usetrackscroll to hook * chore: cleanup un-needed setTimeout * fix: linting issues * chore: example fix * fix: test cases * fix: test cases * fix: flaky scroll tests cases * chore: revert prop name change * chore: blank commit * chore: blank commit --------- Co-authored-by: shubh-bruno <shubh-bruno@shubh-bruno.local> Co-authored-by: Sid <siddharth@usebruno.com>
57 lines
1019 B
JavaScript
57 lines
1019 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-weight: 500;
|
|
table-layout: fixed;
|
|
|
|
thead,
|
|
td {
|
|
border: 1px solid ${(props) => props.theme.table.border};
|
|
}
|
|
|
|
thead {
|
|
color: ${(props) => props.theme.table.thead.color};
|
|
font-size: ${(props) => props.theme.font.size.base};
|
|
user-select: none;
|
|
}
|
|
td {
|
|
padding: 6px 10px;
|
|
|
|
&:nth-child(1) {
|
|
width: 30%;
|
|
}
|
|
|
|
&:nth-child(3) {
|
|
width: 70px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn-add-header {
|
|
font-size: ${(props) => props.theme.font.size.base};
|
|
}
|
|
|
|
input[type='text'] {
|
|
width: 100%;
|
|
border: solid 1px transparent;
|
|
outline: none !important;
|
|
background-color: inherit;
|
|
|
|
&:focus {
|
|
outline: none !important;
|
|
border: solid 1px transparent;
|
|
}
|
|
}
|
|
|
|
input[type='checkbox'] {
|
|
cursor: pointer;
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|