Skip to content

Commit 0f4c670

Browse files
kazup01Davy-c
authored andcommitted
Fix status manager UI
1 parent d6fbf43 commit 0f4c670

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

src/cloud/components/Views/Kanban/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { SerializedView } from '../../../interfaces/db/view'
1919
import { useCloudApi } from '../../../lib/hooks/useCloudApi'
2020
import { useCloudResourceModals } from '../../../lib/hooks/useCloudResourceModals'
2121
import { useI18n } from '../../../lib/hooks/useI18n'
22+
import MetadataContainerBreak from '../../../../design/components/organisms/MetadataContainer/atoms/MetadataContainerBreak'
2223
import {
2324
KanbanViewList,
2425
useKanbanView,
@@ -176,7 +177,7 @@ const KanbanView = ({
176177
label={status}
177178
onSave={(status) => editStatus(status)}
178179
/>
179-
<hr />
180+
<MetadataContainerBreak />
180181
</>
181182
)}
182183
</ListSettings>,

src/design/components/molecules/Form/atoms/FormColorSelect.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ const FormColorSelect = ({
3434
const Container = styled.div`
3535
display: inline-block;
3636
position: relative;
37+
width: 100%;
3738
3839
& > .form__color__selector {
3940
position: absolute;

src/design/components/molecules/Form/atoms/FormInput.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ const StyledInput = styled.input`
118118
background: none;
119119
border: 1px solid ${({ theme }) => theme.colors.border.main};
120120
color: ${({ theme }) => theme.colors.text.primary};
121+
width: 100%;
121122
122123
&:read-only {
123124
background: ${({ theme }) => theme.colors.background.secondary};

src/design/components/organisms/MetadataContainer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const Container = styled.div`
4343
.metadata__scroll {
4444
width: 100%;
4545
height: 100%;
46-
padding: ${({ theme }) => theme.sizes.spaces.df}px 0;
46+
padding: ${({ theme }) => theme.sizes.spaces.sm}px 0;
4747
}
4848
4949
.metadata__container {

src/design/components/organisms/MetadataContainer/molecules/MetadataContainerRow.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ const Container = styled.div`
191191
.metadata__item__header {
192192
text-transform: uppercase;
193193
color: ${({ theme }) => theme.colors.text.subtle} !important;
194-
margin-left: ${({ theme }) => theme.sizes.spaces.df}px;
195194
}
196195
`
197196

0 commit comments

Comments
 (0)