Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 43f7b84a authored by Adam Tauber's avatar Adam Tauber
Browse files

[fix] do not stretch images - fixes #1262

parent 29960aa1
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -267,6 +267,11 @@ input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not
  outline: 0 none;
  position: relative;
}
@media screen and (max-width: 75em) {
  .img-thumbnail {
    object-fit: cover;
  }
}
.infobox .panel-heading {
  background-color: #f6f9fa;
}
+5 −0
Original line number Diff line number Diff line
@@ -240,6 +240,11 @@ input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not
  outline: 0 none;
  position: relative;
}
@media screen and (max-width: 75em) {
  .img-thumbnail {
    object-fit: cover;
  }
}
.infobox .panel-heading {
  background-color: #f6f9fa;
}
+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+6 −0
Original line number Diff line number Diff line
@@ -185,3 +185,9 @@
    outline: 0 none;
    position: relative;
}

@media screen and (max-width: 75em) {
    .img-thumbnail {
        object-fit: cover;
    }
}