Skip to content

Commit

Permalink
add fixes required
Browse files Browse the repository at this point in the history
  • Loading branch information
Mykolyan committed Nov 27, 2024
1 parent 5736f7b commit dca8527
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/styles/blocks/expertise.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
gap: 56px;
padding-bottom: 72px;
padding-top: 56px;
justify-content: center;

@include on-tablet {
gap: 72px;
Expand Down
14 changes: 11 additions & 3 deletions src/styles/blocks/menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,21 @@
inset: 0;
opacity: 0;
pointer-events: none;
display: none;
transition: opacity 0.3s ease-in-out;
visibility: hidden;
transform: translateX(-100%);
transition:
opacity 0.3s ease-in-out,
transform 0.3s ease-in-out,
visibility 0s linear 0.3s;

&:target {
opacity: 1;
pointer-events: all;
display: block;
visibility: visible;
transform: translateX(0);
transition:
opacity 0.3s ease-in-out,
transform 0.3s ease-in-out;
}

&__nav {
Expand Down
4 changes: 3 additions & 1 deletion src/styles/blocks/services.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

@include on-tablet {
gap: 56px;
justify-content: center;
}
}

Expand Down Expand Up @@ -37,7 +38,8 @@

@include on-tablet {
flex-flow: row wrap;
width: 558px;
width: 100%;
justify-content: center;
}

@include on-desktop {
Expand Down
1 change: 1 addition & 0 deletions src/styles/blocks/testimonials.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
align-items: center;
gap: 24px;
padding-top: 48px;
justify-content: center;

@include on-tablet {
gap: 30px;
Expand Down

0 comments on commit dca8527

Please sign in to comment.