Thumbnails are 300 pixels and large screens get 1400px width to work with

This commit is contained in:
2019-03-03 23:49:48 +01:00
parent 4d3b74f6e1
commit eddc67d662
3 changed files with 7 additions and 6 deletions

View File

@@ -101,7 +101,7 @@ export default {
display: flex;
width: 100%;
flex-direction: row;
justify-content: space-evenly;
// justify-content: space-evenly;
flex-wrap: wrap;
padding: 1rem 0;
}

View File

@@ -53,10 +53,11 @@ export default {
}
img {
max-height: 250px;
max-width: 250px;
max-height: 300px;
max-width: 300px;
width: 300px;
cursor: pointer;
margin: 0 0.5rem;
margin: 0.6rem;
@media screen and (max-width: 600px) {
background-color: red;

View File

@@ -44,7 +44,7 @@ a {
// max-width: unset;
}
@media screen and (min-width: 1100px) {
max-width: 1000px;
@media screen and (min-width: 1400px) {
max-width: 1400px;
}
}