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
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
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
MyCard
Neos
Commits
d7b95792
Commit
d7b95792
authored
Mar 04, 2023
by
Chunchi Che
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update small
parent
d36de2f7
Pipeline
#20430
failed with stages
in 3 minutes and 34 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
src/ui/Duel/layout.tsx
src/ui/Duel/layout.tsx
+0
-1
src/ui/Duel/timeLine.tsx
src/ui/Duel/timeLine.tsx
+17
-1
No files found.
src/ui/Duel/layout.tsx
View file @
d7b95792
...
@@ -21,7 +21,6 @@ const contentStyle: React.CSSProperties = {
...
@@ -21,7 +21,6 @@ const contentStyle: React.CSSProperties = {
};
};
const
siderStyle
:
React
.
CSSProperties
=
{
const
siderStyle
:
React
.
CSSProperties
=
{
textAlign
:
"
center
"
,
lineHeight
:
"
120px
"
,
lineHeight
:
"
120px
"
,
position
:
"
fixed
"
,
position
:
"
fixed
"
,
overflow
:
"
auto
"
,
overflow
:
"
auto
"
,
...
...
src/ui/Duel/timeLine.tsx
View file @
d7b95792
import
React
from
"
react
"
;
import
React
from
"
react
"
;
import
{
Timeline
}
from
"
antd
"
;
import
{
Timeline
}
from
"
antd
"
;
import
{
UserOutlined
,
SettingOutlined
}
from
"
@ant-design/icons
"
;
const
DuelTimeLine
=
()
=>
<
Timeline
items=
{
[]
}
/>;
const
DuelTimeLine
=
()
=>
<
Timeline
items=
{
[
{
dot
:
<
UserOutlined
/>,
children
:
"
对手消息
"
,
color
:
"
red
"
},
{
dot
:
<
UserOutlined
/>,
children
:
"
自己消息
"
,
color
:
"
green
"
},
{
dot
:
<
SettingOutlined
/>,
children
:
'
系统消息
'
,
},
]
}
/>;
export
default
DuelTimeLine
;
export
default
DuelTimeLine
;
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