Dashboard Temp Share Shortlinks Frames API

HTMLify

_projects.scss
Views: 3 | Author: cody
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.projects-body {
  @include blog-and-project-formatting;

  &__focus-container {
    gap: 9.6rem 0;
  }

  &__paragraph-spacing-below {
    margin-bottom: 2.4rem;
  }

  &__bold-text {
    font-weight: 500;
  }
}

// TECHNOLOGIES SECTION //
.technologies {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, min-content);
  gap: 2rem 1vw;

  @media only screen and (max-width: $bp-laptop-l) {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 2rem 1vw;
  }

  @media only screen and (max-width: $bp-laptop) {
    grid-template-columns: min-content;
    justify-content: center;
    gap: 2rem 0;
  }

  @media only screen and (max-width: $bp-tablet) {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  @media only screen and (max-width: $bp-mobile-l){
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  &__header {
    grid-row: 1 / 2;
    grid-column: 1 / -1;
  }
}