29 lines
402 B
TypeScript
29 lines
402 B
TypeScript
import { css } from '@design.estate/dees-element';
|
|
|
|
export default css`
|
|
h1 {
|
|
margin-top: 50px;
|
|
border-bottom: 1px solid #666;
|
|
padding-bottom: 10px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
h2 {
|
|
border-top: 1px dotted #666;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
dees-button {
|
|
margin-top: 16px;
|
|
width: 200px;
|
|
}
|
|
|
|
dees-input-text {
|
|
max-width: 400px;
|
|
}
|
|
`;
|