summaryrefslogtreecommitdiff
path: root/sass/components/_portrait-container.scss
blob: 819b18efd6d4fc6929a3c9991f3e1af696da1aaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@use "../abstracts/animations" as *;

.portrait-container {
  height: 50vh;
  width: fit-content;
  animation: moveInLeft 2s ease-out;
  backface-visibility: hidden;

  img {
    border-radius: 25px;
    height: 100%;
    width: 100%;
    object-fit: scale-down;
  }
}