Compare commits

..

No commits in common. "aac2727acfcea3661af4251442b631242d2fcde8" and "6c3a07f9399fa32bbbc8705c2e38c976b6fd05e1" have entirely different histories.

3 changed files with 5 additions and 46 deletions

View File

@ -1,12 +1,13 @@
.photo-grid { .photo-grid {
display: flex; display: flex;
justify-content: space-evenly; justify-content: center;
flex-direction: row; flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
margin-left: 50px;
margin-right: 50px;
.photo-grid-thumb-container { .photo-grid-thumb-container {
margin: 10px 0; max-width: 30%;
margin: 10px;
.photo-grid-thumb { .photo-grid-thumb {
position: relative; position: relative;
left: 50%; left: 50%;
@ -16,39 +17,4 @@
width: 100%; width: 100%;
} }
} }
}
@media only screen and (min-width: 1500px) {
.photo-grid {
.photo-grid-thumb-container {
width: 23%;
}
}
}
@media only screen and (max-width: 1499px) and (min-width: 1000px) {
.photo-grid {
.photo-grid-thumb-container {
width: 30%;
}
}
}
@media only screen and (max-width: 999px) and (min-width: 700px) {
.photo-grid {
.photo-grid-thumb-container {
width: 44%;
}
}
}
@media only screen and (max-width: 699px) {
.photo-grid {
.photo-grid-thumb-container {
margin: 10px 10px 0 10px;
width: 100%;
}
}
} }

View File

@ -1,5 +1,4 @@
import PhotoGrid from '../photoDisplays/PhotoGrid'; import PhotoGrid from '../photoDisplays/PhotoGrid';
import './Portfolio.scss';
const images = [{ const images = [{
id: 0, id: 0,

View File

@ -1,6 +0,0 @@
@media only screen and (min-width: 700px) {
.portfolio-section {
padding-left: 100px;
padding-right: 100px;
}
}