18 lines
298 B
JavaScript
18 lines
298 B
JavaScript
css(`
|
|
home- {
|
|
margin: 0px;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 0px;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background-color: ${Colors.base};
|
|
font-family: system-ui;
|
|
}
|
|
`)
|
|
|
|
class Home extends Page {
|
|
render() {
|
|
Header()
|
|
}
|
|
} |