Bladeren bron

fix(filmstrip): Set avatar container height within inlay

In the filmstrip inlay, the avatar container holds the avatar
image. The image is set to 100% height, so it displays entirely
in the container. However, this does not adjust the horizontal
space created by the image in firefox, leaving whitespace to the
right of the avatar. The fix is to set the container height to
100% so that all its content will fit inside, automatically
adjusting the space created by the image width.
j8
Leonard Kim 8 jaren geleden
bovenliggende
commit
8ada06cfe3
1 gewijzigde bestanden met toevoegingen van 1 en 0 verwijderingen
  1. 1
    0
      css/_inlay.scss

+ 1
- 0
css/_inlay.scss Bestand weergeven

93
         }
93
         }
94
 
94
 
95
         &__avatar-container {
95
         &__avatar-container {
96
+            height: 100%;
96
             position: relative;
97
             position: relative;
97
             > img {
98
             > img {
98
                 height: 100%;
99
                 height: 100%;

Laden…
Annuleren
Opslaan