Skip to content

Commit 5257b37

Browse files
authored
Merge pull request #205 from zenml-io/stack-creation-fixes
Stack creation fixes
2 parents 1733d40 + b44e1ec commit 5257b37

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

src/ui/components/forms/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,10 @@ export const SearchInputField = (
216216
} & any,
217217
): JSX.Element => {
218218
return (
219-
<FlexBox.Column fullWidth style={{ height: '100px' }}>
219+
<FlexBox.Column fullWidth style={{ height: '100px', marginTop: '-10px' }}>
220220
<FlexBox alignItems="center" fullWidth style={{ position: 'relative' }}>
221221
<LinkBox
222-
style={{ position: 'absolute', left: '7px', top: '30px' }}
222+
style={{ position: 'absolute', left: '7px', top: '35px' }}
223223
onClick={() => {}}
224224
>
225225
<icons.search color={iconColors.grey} />

src/ui/layouts/common/CustomStackBox/index.module.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@
2222
display: flex;
2323
justify-content: center;
2424
align-items: center;
25-
.imageContainer {
26-
27-
height: 59px;
28-
width: 119px;
25+
margin: 8px;
26+
27+
.imageContainer {
28+
height: 50px;
29+
width: 100px;
2930
background-color: #fff;
3031
// display: flex;
3132
// justify-content: center;

src/ui/layouts/stackComponents/RegisterComponents/ListForAll/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const ListForAll: React.FC<Props> = ({ type }: Props) => {
8181
return (
8282
<>
8383
<FlexBox.Column fullWidth>
84-
<div style={{ marginBottom: '-30px' }}>
84+
<div style={{ marginBottom: '-10px' }}>
8585
<SearchInputField
8686
placeholder={'Search'}
8787
value={text}

0 commit comments

Comments
 (0)