Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linweijiong
jinfa-platform
Commits
4509a81c
Commit
4509a81c
authored
May 11, 2021
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 更改样式
parent
2d49bfa6
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
53 deletions
+9
-53
index.less
src/components/MellowCard/index.less
+0
-44
index.tsx
src/components/MellowCard/index.tsx
+9
-9
No files found.
src/components/MellowCard/index.less
View file @
4509a81c
.mellow {
:global {
.ant-card {
border-radius: 8px;
&-head {
border-bottom: none;
&-title {
line-height: 24px;
// padding-bottom: 0;
font-size: 14px;
font-weight: 500;
color: rgba(23, 43, 77, 1);
}
}
&-body {
padding: 14px 24px 24px;
}
}
}
&.fullHeight {
height: 100%;
:global {
.ant-card {
height: 100%;
display: flex;
flex-direction: column !important;
&-head {
flex-shrink: 0;
}
&-body {
flex: 1;
}
}
}
}
}
\ No newline at end of file
src/components/MellowCard/index.tsx
View file @
4509a81c
...
...
@@ -2,15 +2,14 @@
* @Author: XieZhiXiong
* @Date: 2020-08-26 17:32:45
* @LastEditors: XieZhiXiong
* @LastEditTime: 202
0-09-29 14:47:49
* @LastEditTime: 202
1-05-11 15:15:55
* @Description: 基于 antd Card 封装的适合项目 UI 的 Card,使用方式跟 antd Card 一样,这里只是修改了样式
*/
import
React
from
'react'
;
import
{
Card
}
from
'antd'
;
import
classNames
from
'classnames'
;
import
{
CardProps
}
from
'antd/lib/card'
;
import
styled
from
'styled-components'
import
styles
from
'./index.less'
;
import
styled
from
'styled-components'
;
const
Wrap
=
styled
(
props
=>
<
div
{
...
props
}
/>)
`
> .ant-card {
...
...
@@ -20,9 +19,8 @@ const Wrap = styled(props => <div {...props}/>)`
border-bottom: none;
.ant-card-head-title {
line-height: 24px;
padding-bottom: 0;
font-size: 16px;
padding-bottom: 9px;
font-size: 14px;
font-weight: 500;
color: rgba(23, 43, 77, 1);
}
...
...
@@ -53,12 +51,14 @@ const Wrap = styled(props => <div {...props}/>)`
`
export
interface
MellowCardProps
extends
CardProps
{
blockClassName
?:
string
;
fullHeight
?:
boolean
;
// 是否占满父级的高度,一般用于多列使用改组件的情况
/**
* 是否占满父级的高度,一般用于多列使用改组件的情况
*/
fullHeight
?:
boolean
;
}
const
MellowCard
:
React
.
FC
<
MellowCardProps
>
=
props
=>
{
const
{
children
,
blockClassName
,
fullHeight
,
...
rest
}
=
props
;
const
{
children
,
fullHeight
,
...
rest
}
=
props
;
const
cls
=
classNames
({
'fullHeight'
:
fullHeight
,
});
...
...
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