mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-03 21:34:36 +01:00
30 lines
436 B
JavaScript
30 lines
436 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
|
|
thead, td {
|
|
border: 1px solid #efefef;
|
|
}
|
|
|
|
thead {
|
|
color: #777777;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
td {
|
|
padding: 6px 10px;
|
|
|
|
&.value {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|