squiggle/packages/website/src/pages/index.module.css

25 lines
399 B
CSS
Raw Normal View History

2022-02-06 18:40:28 +00:00
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
padding: 2rem 0;
2022-02-06 18:40:28 +00:00
text-align: center;
position: relative;
overflow: hidden;
2022-07-23 18:41:12 +00:00
background: rgb(255, 246, 237);
2022-02-06 18:40:28 +00:00
}
@media screen and (max-width: 966px) {
.heroBanner {
padding: 2rem;
}
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
2022-07-23 18:41:12 +00:00
}