Compare commits

..

2 Commits

Author SHA1 Message Date
1554cbc821 Merge pull request 'style: add some style 6' (#27) from style/design into main
All checks were successful
Deploy Olimparena / deploy (push) Successful in 15s
Reviewed-on: #27
2026-06-05 09:36:31 +00:00
a81290e261 style: add some style 6 2026-06-05 12:36:12 +03:00
3 changed files with 11 additions and 11 deletions

View File

@@ -817,20 +817,20 @@ img {
.reviews__dots {
display: flex;
justify-content: center;
gap: 8px;
gap: 12px;
margin-top: 18px;
}
.reviews__dot {
width: 10px;
height: 10px;
width: 16px;
height: 16px;
border: 0;
border-radius: 999px;
background: rgba(255, 255, 255, 0.28);
background: rgba(255, 255, 255, 0.17);
cursor: pointer;
transition: width 0.2s ease, background-color 0.2s ease;
}
.reviews__dot.is-active {
width: 26px;
width: 16px;
background: #cf1717;
}

File diff suppressed because one or more lines are too long

View File

@@ -852,21 +852,21 @@ img {
&__dots {
display: flex;
justify-content: center;
gap: 8px;
gap: 12px;
margin-top: 18px;
}
&__dot {
width: 10px;
height: 10px;
width: 16px;
height: 16px;
border: 0;
border-radius: 999px;
background: rgba(255, 255, 255, 0.28);
background: rgba(255, 255, 255, 0.17);
cursor: pointer;
transition: width 0.2s ease, background-color 0.2s ease;
&.is-active {
width: 26px;
width: 16px;
background: $color-accent;
}
}