kafka-ui/kafka-ui-react-app/src/components/common/PropertiesList/PropertiesList.styled.tsx
Oleg Shur 7765a268af
Topic statistics (#2413)
* Topic statistics

* Typo

* Code smell

* Specs

* Specs

* Use timestamp helper

* Improve coverage

* styling
2022-08-09 16:13:03 +03:00

17 lines
364 B
TypeScript

import styled from 'styled-components';
export const List = styled.div`
display: grid;
grid-template-columns: repeat(2, max-content);
gap: 8px;
column-gap: 24px;
margin-top: 16px;
text-align: left;
`;
export const Label = styled.div`
font-size: 14px;
font-weight: 500;
color: ${({ theme }) => theme.list.label.color};
white-space: nowrap;
`;