mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
17 lines
285 B
JavaScript
17 lines
285 B
JavaScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
const LayoutStyles = styled.div`
|
||
|
|
min-height: 100vh;
|
||
|
|
display: grid;
|
||
|
|
grid-template-rows: auto 1fr auto;
|
||
|
|
|
||
|
|
p,
|
||
|
|
li {
|
||
|
|
word-wrap: normal;
|
||
|
|
font-size: var(--bodyTextSize);
|
||
|
|
color: var(--primary);
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default LayoutStyles;
|