33 lines
563 B
TypeScript
33 lines
563 B
TypeScript
import styled from "styled-components";
|
|
|
|
export const SContainer = styled.div`
|
|
height: 100%;
|
|
min-height: 200px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
word-break: break-word;
|
|
`;
|
|
|
|
export const STable = styled(SContainer)`
|
|
flex-direction: column;
|
|
text-align: left;
|
|
`;
|
|
|
|
export const SRow = styled.div`
|
|
width: 100%;
|
|
display: flex;
|
|
margin: 6px 0;
|
|
`;
|
|
|
|
export const SKey = styled.div`
|
|
width: 30%;
|
|
font-weight: 700;
|
|
`;
|
|
|
|
export const SValue = styled.div`
|
|
width: 70%;
|
|
font-family: monospace;
|
|
`;
|