mirror of
https://github.com/jcreek/what-games-should-I-stream.git
synced 2026-07-13 02:43:46 +00:00
Basic html & js page that gets some data and then crashes due to lack of proper promise chaining.
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#root {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin: 1rem;
|
||||
border: 1px solid gray;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 600px) {
|
||||
.card {
|
||||
flex: 1 1 calc(50% - 2rem);
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 900px) {
|
||||
.card {
|
||||
flex: 1 1 calc(33% - 2rem);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user