mirror of
https://github.com/usebruno/bruno.git
synced 2025-07-26 00:06:06 +02:00
17 lines
283 B
JavaScript
17 lines
283 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
|
|
thead {
|
|
color: ${(props) => props.theme.table.thead.color};
|
|
font-size: 0.8125rem;
|
|
user-select: none;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|