mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-29 03:13:45 +01:00
44 lines
665 B
JavaScript
44 lines
665 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-weight: 600;
|
|
|
|
thead, td {
|
|
border: 1px solid #efefef;
|
|
}
|
|
|
|
thead {
|
|
color: #616161;
|
|
font-size: 0.8125rem;
|
|
}
|
|
td {
|
|
padding: 6px 10px;
|
|
}
|
|
}
|
|
|
|
.btn-add-header {
|
|
margin-block: 10px;
|
|
padding: 5px;
|
|
}
|
|
|
|
input[type="text"] {
|
|
width: 100%;
|
|
border: solid 1px transparent;
|
|
outline: none !important;
|
|
|
|
&:focus{
|
|
outline: none !important;
|
|
border: solid 1px transparent;
|
|
}
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
cursor: pointer;
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|