Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
love_飞影
Neos
Commits
f9cbd39d
Commit
f9cbd39d
authored
Aug 09, 2023
by
timel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: styles
parent
97153a59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
10 deletions
+9
-10
src/ui/Shared/SpecialButton/index.module.scss
src/ui/Shared/SpecialButton/index.module.scss
+6
-7
src/ui/WaitRoom/index.tsx
src/ui/WaitRoom/index.tsx
+3
-3
No files found.
src/ui/Shared/SpecialButton/index.module.scss
View file @
f9cbd39d
...
...
@@ -5,7 +5,7 @@
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
gap
:
8
px
;
gap
:
10
px
;
padding
:
12px
0
;
border
:
3px
solid
hsla
(
0
,
0%
,
100%
,
0
.3
);
border-radius
:
8px
;
...
...
@@ -18,19 +18,18 @@
transition
:
0
.3s
;
&
.disabled
{
background
:
none
;
color
:
rgba
(
255
,
255
,
255
,
0
.
5
);
background
:
hsla
(
0
,
0%
,
100%
,
0
.08
)
;
color
:
hsla
(
0
,
0%
,
100%
,
0
.2
5
);
cursor
:
not
-
allowed
;
border
:
1px
solid
hsla
(
0
,
0%
,
100%
,
0
.5
);
border
:
1px
solid
hsla
(
0
,
0%
,
100%
,
0
.3
);
border
:
none
;
&
:
:
before
{
opacity
:
0
.1
;
}
&
:hover
{
background
:
none
;
}
}
&
:hover
{
&
:
not
(
.disabled
)
:
hover
{
background-color
:
hsla
(
0
,
0%
,
100%
,
1
.1
);
}
...
...
src/ui/WaitRoom/index.tsx
View file @
f9cbd39d
...
...
@@ -334,12 +334,12 @@ const ActionButton: React.FC<{
</>
)
:
stage
==
RoomStage
.
HAND_SELECTING
?
(
<>
<
IconFont
type=
"icon-mora"
size=
{
18
}
/>
<
IconFont
type=
"icon-mora"
size=
{
20
}
/>
<
span
>
请猜拳
</
span
>
</>
)
:
stage
==
RoomStage
.
HAND_SELECTED
?
(
<>
<
LoadingOutlined
size=
{
20
}
/>
<
LoadingOutlined
/>
<
span
>
等待对方猜拳
</
span
>
</>
)
:
stage
==
RoomStage
.
TP_SELECTING
?
(
...
...
@@ -349,7 +349,7 @@ const ActionButton: React.FC<{
</>
)
:
stage
==
RoomStage
.
TP_SELECTED
?
(
<>
<
LoadingOutlined
size=
{
20
}
/>
<
LoadingOutlined
/>
<
span
>
等待游戏开始
</
span
>
</>
)
:
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment