Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/styles/blocks/catalog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
justify-content: center;
align-items: center;
box-sizing: border-box;
transition: scale 300ms, color 300ms;

width: 200px;
height: 300px;
Expand All @@ -23,3 +24,8 @@
}
}
}

.catalog__card:hover {
scale: 1.2;
color: #34568b;
}
5 changes: 5 additions & 0 deletions src/styles/blocks/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,10 @@
text-transform: uppercase;
font-size: 12px;
font-weight: 500;
transition: color 300ms;
}
}

.nav__link:hover {
color: #00acdc;
}