mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-12 01:30:42 +01:00
32 lines
486 B
JavaScript
32 lines
486 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
|
|
thead {
|
|
color: #777777;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
td {
|
|
padding: 6px 10px;
|
|
|
|
&.value {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
|
|
tbody {
|
|
tr:nth-child(odd) {
|
|
background-color: var(--color-table-stripe);
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|