summaryrefslogtreecommitdiff
path: root/sass/components/_screenshot-container.scss
blob: 8c284628af33538cabde86a5f6fee457cc10c6a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@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;

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