This repository was archived by the owner on Nov 8, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
src/containers/thread/DashboardThread Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ const BannerNotifyLayout: FC<TProps> = ({
118
118
</ Block >
119
119
< LayoutTitle $active = { layout === BANNER_NOTIFY_LAYOUT . DEFAULT } >
120
120
< CheckLabel
121
- title = "常规式 "
121
+ title = "间隔式 "
122
122
$active = { layout === BANNER_NOTIFY_LAYOUT . DEFAULT }
123
123
top = { 15 }
124
124
left = { - 15 }
Original file line number Diff line number Diff line change @@ -130,16 +130,21 @@ export const Circle = styled.div<{ radius?: number }>`
130
130
`
131
131
export const BgWrapper = styled . div `
132
132
${ css . flex ( 'align-center' ) } ;
133
+ font-size: 12px;
133
134
`
134
135
export const BgLabel = styled . div < { bg : TColorName } > `
135
- ${ css . circle ( 24 ) }
136
+ width: 44px;
137
+ height: 24px;
136
138
${ css . flex ( 'align-both' ) } ;
137
139
border: 1px solid;
138
140
border-color: ${ ( { bg } ) => COLORS [ bg ] } ;
141
+ border-radius: 6px;
139
142
cursor: pointer;
140
- margin-left: 10px ;
143
+ margin-left: 15px ;
141
144
`
142
145
export const TheColor = styled . div < { color : TColorName } > `
143
- ${ css . circle ( 18 ) } ;
146
+ width: 38px;
147
+ height: 18px;
148
+ border-radius: 6px;
144
149
background-color: ${ ( { color } ) => COLORS [ color ] } ;
145
150
`
You can’t perform that action at this time.
0 commit comments