Skip to content

Commit

Permalink
correction
Browse files Browse the repository at this point in the history
  • Loading branch information
AgaMarula committed Jun 17, 2024
1 parent abab786 commit 935fc1e
Show file tree
Hide file tree
Showing 6 changed files with 70 additions and 234 deletions.
23 changes: 15 additions & 8 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
Apple
</a>
</li>

<li class="nav__item">
<a
href="index.html"
Expand All @@ -47,6 +48,7 @@
Samsung
</a>
</li>

<li class="nav__item">
<a
href="index.html"
Expand All @@ -55,6 +57,7 @@
Smartphones
</a>
</li>

<li class="nav__item">
<a
href="index.html"
Expand All @@ -64,6 +67,7 @@
Laptops & Computers
</a>
</li>

<li class="nav__item">
<a
href="index.html"
Expand All @@ -72,6 +76,7 @@
Gadgets
</a>
</li>

<li class="nav__item">
<a
href="index.html"
Expand All @@ -80,6 +85,7 @@
Tablets
</a>
</li>

<li class="nav__item">
<a
href="index.html"
Expand All @@ -88,6 +94,7 @@
Photo
</a>
</li>

<li class="nav__item">
<a
href="index.html"
Expand All @@ -107,7 +114,7 @@
<img
src="./images/imac.jpeg"
alt="product-foto"
class="card__imac"
class="card__foto"
/>
<div class="card__info">
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A)
Expand Down Expand Up @@ -142,7 +149,7 @@
<img
src="./images/imac.jpeg"
alt="product-foto"
class="card__imac"
class="card__foto"
/>
<div class="card__info">
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A)
Expand Down Expand Up @@ -177,7 +184,7 @@
<img
src="./images/imac.jpeg"
alt="product-foto"
class="card__imac"
class="card__foto"
/>
<div class="card__info">
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A)
Expand Down Expand Up @@ -212,7 +219,7 @@
<img
src="./images/imac.jpeg"
alt="product-foto"
class="card__imac"
class="card__foto"
/>
<div class="card__info">
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A)
Expand Down Expand Up @@ -247,7 +254,7 @@
<img
src="./images/imac.jpeg"
alt="product-foto"
class="card__imac"
class="card__foto"
/>
<div class="card__info">
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A)
Expand Down Expand Up @@ -282,7 +289,7 @@
<img
src="./images/imac.jpeg"
alt="product-foto"
class="card__imac"
class="card__foto"
/>
<div class="card__info">
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A)
Expand Down Expand Up @@ -317,7 +324,7 @@
<img
src="./images/imac.jpeg"
alt="product-foto"
class="card__imac"
class="card__foto"
/>
<div class="card__info">
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A)
Expand Down Expand Up @@ -352,7 +359,7 @@
<img
src="./images/imac.jpeg"
alt="product-foto"
class="card__imac"
class="card__foto"
/>
<div class="card__info">
APPLE A1419 iMac 27" Retina 5K Monoblock (MNED2UA/A)
Expand Down
2 changes: 1 addition & 1 deletion src/styles/blocks/card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
text-align: center;
flex-flow: column wrap;

&__imac {
&__foto {
display: flex;
justify-content: center;
margin: 0 auto 40px;
Expand Down
40 changes: 19 additions & 21 deletions src/styles/blocks/navigation.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
@use '../utils/variables' as *;



.nav {
height: 60px;

Expand Down Expand Up @@ -32,26 +30,26 @@
height: 60px;
line-height: 60px;
transition: 0.3s;
}

.is-active {
color: $blue;
}

.is-active::after {
content: '';
display: block;
height: 4px;
width: 100%;
border-radius: 8px;
background-color: $blue;
bottom: 0;
text-align: center;
position: absolute;
left: 0;
}
&.is-active {
color: $blue;

&::after {
content: '';
display: block;
height: 4px;
width: 100%;
border-radius: 8px;
background-color: $blue;
bottom: 0;
text-align: center;
position: absolute;
left: 0;
}
}

&__link[data-qa='nav-hover']:hover {
color: $blue;
&[data-qa='nav-hover']:hover {
color: $blue;
}
}
}
192 changes: 0 additions & 192 deletions src/styles/index.css

This file was deleted.

Loading

0 comments on commit 935fc1e

Please sign in to comment.