/ src / client / theme.js
theme.js
 1  import { ThemeProvider, css } from 'fannypack';
 2  
 3  export default {
 4    Column: {
 5      base: css`
 6        height: 100%;
 7      `,
 8    },
 9    Container: {
10      base: css`
11        max-width: none;
12        height: 100%;
13      `,
14    },
15    Table: {
16      Row: {
17        base: css`
18          .selected {
19            background: yellow;
20            border: solid black 2px;
21          }
22        `,
23      }
24    },
25  }