Skip to content

Commit

Permalink
Collection Variables Support (#2963) (#3018)
Browse files Browse the repository at this point in the history
Support for Collection Variables
---------

Co-authored-by: lohit <[email protected]>
Co-authored-by: lohit <[email protected]>
  • Loading branch information
3 people authored Sep 3, 2024
1 parent 5931f0b commit cb395e7
Show file tree
Hide file tree
Showing 27 changed files with 553 additions and 207 deletions.
53 changes: 21 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import styled from 'styled-components';

const StyledWrapper = styled.div`
div.title {
color: var(--color-tab-inactive);
}
`;

export default StyledWrapper;
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
import styled from 'styled-components';

const Wrapper = styled.div`
table {
width: 100%;
border-collapse: collapse;
font-weight: 600;
table-layout: fixed;
thead,
td {
border: 1px solid ${(props) => props.theme.table.border};
}
thead {
color: ${(props) => props.theme.table.thead.color};
font-size: 0.8125rem;
user-select: none;
}
td {
padding: 6px 10px;
&:nth-child(1) {
width: 30%;
}
&:nth-child(3) {
width: 70px;
}
}
}
.btn-add-var {
font-size: 0.8125rem;
}
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 Wrapper;
Loading

0 comments on commit cb395e7

Please sign in to comment.