* feat: add total users to pagination * move this.total in runInAction callback * add total counts + counts to people tabs * progress: use raw pg query * progress: add test * fix: SQL interpolation * Styling and translation of People page Co-authored-by: Tim <timothychang94@gmail.com>
23 lines
485 B
JavaScript
23 lines
485 B
JavaScript
// @flow
|
|
import styled from "styled-components";
|
|
|
|
const Tabs = styled.nav`
|
|
position: relative;
|
|
border-bottom: 1px solid ${(props) => props.theme.divider};
|
|
margin-top: 22px;
|
|
margin-bottom: 12px;
|
|
overflow-y: auto;
|
|
white-space: nowrap;
|
|
transition: opacity 250ms ease-out;
|
|
`;
|
|
|
|
export const Separator = styled.span`
|
|
border-left: 1px solid ${(props) => props.theme.divider};
|
|
position: relative;
|
|
top: 2px;
|
|
margin-right: 24px;
|
|
margin-top: 6px;
|
|
`;
|
|
|
|
export default Tabs;
|