mirror of
https://github.com/bakhirev/assayo.git
synced 2025-01-18 16:37:50 +00:00
update
This commit is contained in:
parent
4f59f9f8fc
commit
734ed93a32
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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%;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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={{
|
||||
|
|
|
@ -62,5 +62,9 @@
|
|||
width: 71px;
|
||||
line-height: 64px;
|
||||
}
|
||||
|
||||
&_line {
|
||||
width: calc(100% - 384px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue