Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
ant-design-pro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
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
duanledexianxianxian
ant-design-pro
Commits
6ffc494e
Commit
6ffc494e
authored
Mar 28, 2018
by
jim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Optimized logo style
parent
8fe4c6f1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
package.json
package.json
+7
-3
src/components/GlobalHeader/index.js
src/components/GlobalHeader/index.js
+0
-1
src/components/SiderMenu/index.less
src/components/SiderMenu/index.less
+2
-1
No files found.
package.json
View file @
6ffc494e
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
"dependencies"
:
{
"dependencies"
:
{
"
@antv/data-set
"
:
"
^0.8.0
"
,
"
@antv/data-set
"
:
"
^0.8.0
"
,
"
@babel/polyfill
"
:
"
^7.0.0-beta.36
"
,
"
@babel/polyfill
"
:
"
^7.0.0-beta.36
"
,
"
antd
"
:
"
^3.3.
0
"
,
"
antd
"
:
"
^3.3.
3
"
,
"
babel-runtime
"
:
"
^6.9.2
"
,
"
babel-runtime
"
:
"
^6.9.2
"
,
"
bizcharts
"
:
"
^3.1.3-beta.1
"
,
"
bizcharts
"
:
"
^3.1.3-beta.1
"
,
"
bizcharts-plugin-slider
"
:
"
^2.0.1
"
,
"
bizcharts-plugin-slider
"
:
"
^2.0.1
"
,
...
@@ -59,13 +59,13 @@
...
@@ -59,13 +59,13 @@
"
enzyme
"
:
"
^3.1.0
"
,
"
enzyme
"
:
"
^3.1.0
"
,
"
eslint
"
:
"
^4.14.0
"
,
"
eslint
"
:
"
^4.14.0
"
,
"
eslint-config-airbnb
"
:
"
^16.0.0
"
,
"
eslint-config-airbnb
"
:
"
^16.0.0
"
,
"
eslint-config-prettier
"
:
"
^2.9.0
"
,
"
eslint-plugin-babel
"
:
"
^4.0.0
"
,
"
eslint-plugin-babel
"
:
"
^4.0.0
"
,
"
eslint-plugin-compat
"
:
"
^2.1.0
"
,
"
eslint-plugin-compat
"
:
"
^2.1.0
"
,
"
eslint-plugin-import
"
:
"
^2.8.0
"
,
"
eslint-plugin-import
"
:
"
^2.8.0
"
,
"
eslint-plugin-jsx-a11y
"
:
"
^6.0.3
"
,
"
eslint-plugin-jsx-a11y
"
:
"
^6.0.3
"
,
"
eslint-plugin-markdown
"
:
"
^1.0.0-beta.6
"
,
"
eslint-plugin-markdown
"
:
"
^1.0.0-beta.6
"
,
"
eslint-plugin-react
"
:
"
^7.0.1
"
,
"
eslint-plugin-react
"
:
"
^7.0.1
"
,
"
eslint-config-prettier
"
:
"
^2.9.0
"
,
"
gh-pages
"
:
"
^1.0.0
"
,
"
gh-pages
"
:
"
^1.0.0
"
,
"
husky
"
:
"
^0.14.3
"
,
"
husky
"
:
"
^0.14.3
"
,
"
lint-staged
"
:
"
^6.0.0
"
,
"
lint-staged
"
:
"
^6.0.0
"
,
...
@@ -94,5 +94,9 @@
...
@@ -94,5 +94,9 @@
"engines"
:
{
"engines"
:
{
"node"
:
">=8.0.0"
"node"
:
">=8.0.0"
},
},
"browserslist"
:
[
"> 1%"
,
"last 2 versions"
,
"not ie <= 10"
]
"browserslist"
:
[
"> 1%"
,
"last 2 versions"
,
"not ie <= 10"
]
}
}
src/components/GlobalHeader/index.js
View file @
6ffc494e
import
React
,
{
PureComponent
}
from
'
react
'
;
import
React
,
{
PureComponent
}
from
'
react
'
;
import
Debounce
from
'
lodash-decorators/debounce
'
;
import
{
Icon
,
Divider
}
from
'
antd
'
;
import
{
Icon
,
Divider
}
from
'
antd
'
;
import
{
Link
}
from
'
dva/router
'
;
import
{
Link
}
from
'
dva/router
'
;
import
styles
from
'
./index.less
'
;
import
styles
from
'
./index.less
'
;
...
...
src/components/SiderMenu/index.less
View file @
6ffc494e
...
@@ -33,8 +33,9 @@
...
@@ -33,8 +33,9 @@
background-color: white;
background-color: white;
.logo {
.logo {
background: white;
background: white;
border: 1px solid #e9e9e9;
h1 {
h1 {
color: #
002140
;
color: #
1890ff
;
}
}
}
}
}
}
...
...
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