chore: Some fixes and removed old stuff
parent
228f08b327
commit
e55f2452dd
@ -1,3 +1,5 @@
|
|||||||
import { Masonry } from './components/Masonry.jsx'
|
export const PageHomepage = ({}) => (
|
||||||
|
<main>
|
||||||
export const PageHomepage = ({}) => <main></main>
|
<h1>Homepage</h1>
|
||||||
|
</main>
|
||||||
|
)
|
||||||
|
@ -1,19 +1,18 @@
|
|||||||
// Reset
|
|
||||||
|
|
||||||
*,
|
*,
|
||||||
*::before,
|
*::before,
|
||||||
*::after {
|
*::after {
|
||||||
|
// Good practice
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
// For body and headings as typography should be done by hand anyway
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
font: inherit;
|
// For controls
|
||||||
|
font-family: inherit;
|
||||||
appearance: none;
|
appearance: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
input,
|
html,
|
||||||
button {
|
body {
|
||||||
background: unset;
|
display: contents;
|
||||||
border: unset;
|
|
||||||
border-radius: 0;
|
|
||||||
outline: none;
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue