30 lines
407 B
JavaScript
30 lines
407 B
JavaScript
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import { css } from 'lit';
|
|
|
|
export const utils = css`
|
|
.u-bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.u-mb1 {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.u-mt3 {
|
|
margin-top: 24px;
|
|
}
|
|
|
|
.u-ml2 {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.u-mv2 {
|
|
margin-top: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.u-c-mv2 > * {
|
|
margin-top: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
`;
|