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
479b7694
Commit
479b7694
authored
Jul 15, 2023
by
Chunchi Che
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimize styles fo EndModal
parent
f25ddf27
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
4 deletions
+26
-4
src/ui/Duel/Message/EndModal/index.scss
src/ui/Duel/Message/EndModal/index.scss
+15
-0
src/ui/Duel/Message/EndModal/index.tsx
src/ui/Duel/Message/EndModal/index.tsx
+11
-4
No files found.
src/ui/Duel/Message/EndModal/index.scss
View file @
479b7694
.end-container
{
position
:
relative
;
text-align
:
center
;
.result
{
font-size
:
30px
;
font-family
:
cursive
;
color
:
var
(
--
text-color
);
}
.reason
{
font-size
:
20px
;
font-family
:
"Gill Sans"
,
sans-serif
;
}
}
src/ui/Duel/Message/EndModal/index.tsx
View file @
479b7694
import
"
./index.scss
"
;
import
"
./index.scss
"
;
import
React
from
"
react
"
;
import
React
,
{
CSSProperties
}
from
"
react
"
;
import
{
proxy
,
useSnapshot
}
from
"
valtio
"
;
import
{
proxy
,
useSnapshot
}
from
"
valtio
"
;
import
{
fetchStrings
}
from
"
@/api
"
;
import
{
fetchStrings
}
from
"
@/api
"
;
...
@@ -45,9 +45,16 @@ export const EndModal: React.FC = () => {
...
@@ -45,9 +45,16 @@ export const EndModal: React.FC = () => {
rs
();
rs
();
}
}
}
}
>
>
<
p
>
{
isWin
?
"
Win
"
:
"
Defeated
"
}
</
p
>
<
div
className=
"end-container"
>
<
p
>
{
reason
}
</
p
>
<
p
{
isReplay
?
<></>
:
<
p
>
{
fetchStrings
(
"
!system
"
,
1340
)
}
</
p
>
}
className=
"result"
style=
{
{
"
--text-color
"
:
isWin
?
"
blue
"
:
"
red
"
}
as
CSSProperties
}
>
{
isWin
?
"
Win
"
:
"
Defeated
"
}
</
p
>
<
p
className=
"reason"
>
{
reason
}
</
p
>
{
isReplay
?
<></>
:
<
p
>
{
fetchStrings
(
"
!system
"
,
1340
)
}
</
p
>
}
</
div
>
</
NeosModal
>
</
NeosModal
>
);
);
};
};
...
...
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