Skip to content

Commit 9062a34

Browse files
style: redesigned turing page
1 parent 504cbe1 commit 9062a34

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/pages/turing.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
useTour,
1111
} from 'src/contexts'
1212
import {
13-
DelayedLoading,
13+
Loading,
1414
GameInfo,
1515
GameBoard,
1616
TuringLog,
@@ -47,9 +47,9 @@ const TuringPage: NextPage = () => {
4747

4848
if (controller.loading || !controller.game) {
4949
return (
50-
<DelayedLoading isLoading={true}>
50+
<Loading isLoading={true}>
5151
<div></div>
52-
</DelayedLoading>
52+
</Loading>
5353
)
5454
}
5555

@@ -166,10 +166,10 @@ const Turing: React.FC<Props> = (props: Props) => {
166166
style={{ willChange: 'transform, opacity' }}
167167
>
168168
<div className="flex h-full flex-1 flex-col justify-center gap-1 py-10">
169-
<div className="mx-auto mt-2 flex w-[90%] flex-row items-center justify-between gap-4">
169+
<div className="mx-auto mt-2 flex w-[90%] flex-row items-start justify-between gap-3">
170170
<motion.div
171171
variants={itemVariants}
172-
className="flex h-[75vh] min-w-64 flex-grow flex-col justify-between"
172+
className="desktop-left-column-container flex flex-col justify-between"
173173
>
174174
<div className="flex h-full w-full flex-col overflow-hidden rounded-md border border-glassBorder bg-glass backdrop-blur-md">
175175
<GameInfo

0 commit comments

Comments
 (0)