File tree Expand file tree Collapse file tree 5 files changed +5
-3
lines changed
cloud/components/Views/Kanban
organisms/MetadataContainer Expand file tree Collapse file tree 5 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import { SerializedView } from '../../../interfaces/db/view'
19
19
import { useCloudApi } from '../../../lib/hooks/useCloudApi'
20
20
import { useCloudResourceModals } from '../../../lib/hooks/useCloudResourceModals'
21
21
import { useI18n } from '../../../lib/hooks/useI18n'
22
+ import MetadataContainerBreak from '../../../../design/components/organisms/MetadataContainer/atoms/MetadataContainerBreak'
22
23
import {
23
24
KanbanViewList ,
24
25
useKanbanView ,
@@ -176,7 +177,7 @@ const KanbanView = ({
176
177
label = { status }
177
178
onSave = { ( status ) => editStatus ( status ) }
178
179
/>
179
- < hr />
180
+ < MetadataContainerBreak />
180
181
</ >
181
182
) }
182
183
</ ListSettings > ,
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ const FormColorSelect = ({
34
34
const Container = styled . div `
35
35
display: inline-block;
36
36
position: relative;
37
+ width: 100%;
37
38
38
39
& > .form__color__selector {
39
40
position: absolute;
Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ const StyledInput = styled.input`
118
118
background: none;
119
119
border: 1px solid ${ ( { theme } ) => theme . colors . border . main } ;
120
120
color: ${ ( { theme } ) => theme . colors . text . primary } ;
121
+ width: 100%;
121
122
122
123
&:read-only {
123
124
background: ${ ( { theme } ) => theme . colors . background . secondary } ;
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ const Container = styled.div`
43
43
.metadata__scroll {
44
44
width: 100%;
45
45
height: 100%;
46
- padding: ${ ( { theme } ) => theme . sizes . spaces . df } px 0;
46
+ padding: ${ ( { theme } ) => theme . sizes . spaces . sm } px 0;
47
47
}
48
48
49
49
.metadata__container {
Original file line number Diff line number Diff line change @@ -191,7 +191,6 @@ const Container = styled.div`
191
191
.metadata__item__header {
192
192
text-transform: uppercase;
193
193
color: ${ ( { theme } ) => theme . colors . text . subtle } !important;
194
- margin-left: ${ ( { theme } ) => theme . sizes . spaces . df } px;
195
194
}
196
195
`
197
196
You can’t perform that action at this time.
0 commit comments