mirror of
https://github.com/usebruno/bruno.git
synced 2025-07-14 19:25:31 +02:00
61 lines
1011 B
JavaScript
61 lines
1011 B
JavaScript
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(4) {
|
|
width: 70px;
|
|
}
|
|
|
|
select {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn-add-assertion {
|
|
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;
|