Files
blog/src/styles/global.css
2026-07-06 14:20:21 +08:00

27 lines
335 B
CSS

@import "modern-normalize";
@import "css-reset.css";
:root {
--layout-width: 980px;
}
html,
body {
width: 100%;
height: 100%;
font-size: 16px;
}
body {
display: flex;
flex-direction: column;
background: #fafafa;
}
main {
max-width: var(--layout-width);
flex: 1;
width: 100%;
margin: 0 auto;
padding: 32px;
}