summaryrefslogtreecommitdiff
path: root/sass/components/_screenshot-container.scss
blob: beaa0cd577e4113327262a22e893bf156814255a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@use "../abstracts/" as *;

.project-screenshot {
  border-radius: $radius-text-container;
  outline: 5px solid $text-special-dark;
  outline-offset: 1.5rem;
  object-fit: scale-down;
  width: 40%;
  transition: transform 0.6s ease;

  // mobile to smaller laptop screen sizes
  @include responsive(laptop) {
    width: 80%;
  }

  &:hover {
    transform: scale(1.2);
    z-index: 100;
  }
}