Skip to content

Commit

Permalink
sol vol--3
Browse files Browse the repository at this point in the history
  • Loading branch information
kapesha committed Nov 7, 2024
1 parent 7f18c69 commit 4d8e761
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 15 deletions.
22 changes: 11 additions & 11 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
id="header"
>
<header class="first-screen__header">
<a href="/">
<a href="index.html">
<img
src="./images/icons/logomain.svg"
alt="logo"
Expand All @@ -46,21 +46,21 @@
<div class="header__options">
<div class="header__wrapper">
<a
href="/"
href="#"
class="specs"
>
specs
</a>
<div class="en-ua">
<a
href="/"
href="#"
class="language active-language"
>
EN
</a>
<p class="common-text">/</p>
<a
href="/"
href="#"
class="language"
>
UA
Expand All @@ -76,21 +76,21 @@
<div class="header__options-descktop">
<div class="header__options-specs-en-ua">
<a
href="/"
href="#"
class="specs"
>
specs
</a>
<div class="en-ua">
<a
href="/"
href="#"
class="language active-language"
>
EN
</a>
<p class="common-text">/</p>
<a
href="/"
href="#"
class="language"
>
UA
Expand Down Expand Up @@ -126,21 +126,21 @@
</ul>
<div class="aside__options-specs-en-ua">
<a
href="/"
href="#"
class="specs"
>
specs
</a>
<div class="en-ua">
<a
href="/"
href="#"
class="language active-language"
>
EN
</a>
<p class="common-text">/</p>
<a
href="/"
href="#"
class="language"
>
UA
Expand Down Expand Up @@ -543,7 +543,7 @@ <h2 class="form__header">DO YOU HAVE ANY QUESTIONS?</h2>
href="#header"
></a>
<div class="footer__logo">
<a href="/">
<a href="index.html">
<img
src="./images/icons/logomain.svg"
alt="logo"
Expand Down
6 changes: 3 additions & 3 deletions src/styles/blocks/benefits.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
height: 76px;
@include on-decktop {
display: flex;
gap: 84px;
justify-content: space-between;
width: 578px;
align-self: center;
justify-content: center;
align-items: center;
}
}
Expand All @@ -29,7 +29,7 @@
}

&__link {
display: block;
text-align: center;
@include thirdary-text;
color: $main-color;

Expand Down
4 changes: 4 additions & 0 deletions src/styles/blocks/first-screen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
flex-direction: column;
gap: 0;

@include on-tablet {
margin-top: 30px;
}

@include on-tablet {
gap: 130px;
}
Expand Down
4 changes: 4 additions & 0 deletions src/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@

html {
scroll-behavior: smooth;
&:has(.aside:target) {
overflow: hidden;
}
}

.main {
Expand All @@ -26,6 +29,7 @@ html {
background: $bgcolor;



@include on-tablet {
gap: 140px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/styles/utils/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@

@mixin thirdary-text {
font-size: 14px;
line-height: 21px;
line-height: 20px;
text-transform: uppercase;
}

Expand Down

0 comments on commit 4d8e761

Please sign in to comment.