pleshevski.ru/static/styles.css

27 lines
296 B
CSS
Raw Normal View History

2022-03-18 00:06:01 +03:00
*, ::before, ::after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html {
background-color: #eee;
}
2022-03-18 22:59:27 +03:00
html, body {
2022-03-18 00:06:01 +03:00
height: 100%;
}
2022-03-18 22:59:27 +03:00
2022-03-18 00:06:01 +03:00
#root {
min-height: 100vh;
align-items: stretch;
}
2022-03-18 22:59:27 +03:00
#root, #main {
2022-03-18 00:06:01 +03:00
display: flex;
flex-direction: column;
}
2022-03-18 22:59:27 +03:00
#main, .content {
2022-03-18 00:06:01 +03:00
flex: 1 0;
}