This commit is contained in:
bakhirev 2024-12-03 00:52:26 +03:00
parent 4f59f9f8fc
commit 734ed93a32
8 changed files with 27 additions and 14 deletions
build/static
src/ts/components

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -133,7 +133,6 @@
@media (max-width: 900px) {
.quiz_answer {
width: 100px;
&_small {
width: 68px;
}
@ -144,4 +143,7 @@
.quiz_answer_wrapper_small .quiz_answer {
width: 68px;
}
.quiz_answer_wrapper + .quiz_answer_wrapper {
margin-left: var(--space-l);
}
}

View file

@ -58,8 +58,10 @@ function Races({
backgroundImage: 'url(./assets/games/races/greenTop.png)',
}}
/>
<div className={style.races}>
{lines}
<div className={`${style.races} scroll_x`}>
<div style={{ minWidth: '900px' }}>
{lines}
</div>
</div>
<div
className={style.races_green}

View file

@ -28,10 +28,6 @@
background-repeat: repeat-x;
background-size: auto 100%;
background-position: top left;
&:first-child {
// border-top: var(--space-xxs) dashed var(--color-border);
}
}
&_button {

View file

@ -25,7 +25,6 @@
animation-fill-mode: both;
}
@keyframes races_track_info {
from {
opacity: 0;
@ -34,3 +33,9 @@
opacity: 1;
}
}
@media (max-width: 900px) {
.races_track_info {
margin: 0 12%;
}
}

View file

@ -38,7 +38,11 @@ function SwimmingPool({
backgroundImage: 'url(./assets/games/swimmingPool/block2.png)',
}}
/>
{lines}
<div className="scroll_x">
<div style={{ minWidth: '900px' }}>
{lines}
</div>
</div>
<div
className={style.swimming_pool_bottom_border}
style={{

View file

@ -62,5 +62,9 @@
width: 71px;
line-height: 64px;
}
&_line {
width: calc(100% - 384px);
}
}
}