同上+样式
This commit is contained in:
parent
0bfa7572a5
commit
e185ae6484
|
@ -18,7 +18,7 @@ class IndexItem extends Component {
|
||||||
render() {
|
render() {
|
||||||
const { projects } = this.props;
|
const { projects } = this.props;
|
||||||
return (
|
return (
|
||||||
<div className="project-list minH-670">
|
<div className="project-list minH-670" style={{padding:"0px 20px"}}>
|
||||||
{ projects && projects.length > 0 ? projects.map((item, key) => {
|
{ projects && projects.length > 0 ? projects.map((item, key) => {
|
||||||
return (
|
return (
|
||||||
<div className="p-r-Item" key={key}>
|
<div className="p-r-Item" key={key}>
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.ConcentrateTip{
|
.ConcentrateTip{
|
||||||
margin:0px 30px;
|
margin:20px 30px 0px;
|
||||||
padding:5px 20px;
|
padding:5px 20px;
|
||||||
border:1px solid rgb(248, 56, 56);
|
border:1px solid rgb(248, 56, 56);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
$flex:flex;
|
$flex:flex;
|
||||||
.headerbox{
|
.headerbox{
|
||||||
padding:20px 30px;
|
padding:20px;
|
||||||
border-bottom: 1px solid #E0E0E0;
|
border-bottom: 1px solid #E0E0E0;
|
||||||
display: $flex;
|
display: $flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -34,7 +34,7 @@ $flex:flex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.contentBox{
|
.contentBox{
|
||||||
padding:20px 30px 0px 30px;
|
padding:20px 20px 0px 20px;
|
||||||
& > div{
|
& > div{
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
display: $flex;
|
display: $flex;
|
||||||
|
@ -69,7 +69,7 @@ $flex:flex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.infosType{
|
.infosType{
|
||||||
padding:20px 30px 0px 30px;
|
padding:20px 30px 0px 20px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
.infoStatus{
|
.infoStatus{
|
||||||
|
|
|
@ -173,7 +173,7 @@ class InfosUser extends Component {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Spin spinning={isSpin}>
|
<Spin spinning={isSpin}>
|
||||||
<div className="list-r-operation">
|
<div className="list-r-operation" style={{padding:"20px"}}>
|
||||||
<Search
|
<Search
|
||||||
placeholder="输入项目名称关键字进行搜索"
|
placeholder="输入项目名称关键字进行搜索"
|
||||||
enterButton="搜索"
|
enterButton="搜索"
|
||||||
|
|
|
@ -85,7 +85,7 @@ class CommonList extends Component {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Spin spinning={isSpin}>
|
<Spin spinning={isSpin}>
|
||||||
<div className="pd20 minH-670">
|
<div className="minH-670">
|
||||||
<div className="grid-item pb20 bbt">
|
<div className="grid-item pb20 bbt">
|
||||||
<h3 style={{marginBottom:"0px"}}><Link to={`/users/${login}`} ><i className="iconfont icon-zuojiantou color-grey-9 font-16 mr8"></i></Link>{userType === "watch_users" ? `${title_type}关注的` : `关注${title_type}的`}</h3>
|
<h3 style={{marginBottom:"0px"}}><Link to={`/users/${login}`} ><i className="iconfont icon-zuojiantou color-grey-9 font-16 mr8"></i></Link>{userType === "watch_users" ? `${title_type}关注的` : `关注${title_type}的`}</h3>
|
||||||
<div className="text-right">
|
<div className="text-right">
|
||||||
|
|
Loading…
Reference in New Issue