fix the responsive niche cases

This commit is contained in:
Sboonny 2023-02-08 17:24:40 +00:00
parent a3b52efd7f
commit bfde90eaec

View File

@ -10,7 +10,6 @@
.portfolio-screen-shot {
width: 100%;
height: 100%;
max-height: 300px;
display: block;
}
@ -32,14 +31,20 @@
word-break: break-all;
}
@media (min-width: 768px) {
@media (max-width: 990px) {
.portfolio-screen-shot {
max-height: 300px;
}
}
@media (min-width: 995px) {
.portfolio-container {
grid-template-rows: 0.1fr 1fr;
}
.screen-shot-container {
grid-column: 1;
grid-row: 1 / 3;
grid-row: 1 / -1;
}
.portfolio-container h3 {