Files
cinny/src/app/organisms/profile-editor/ProfileEditor.scss
T

28 lines
420 B
SCSS
Raw Normal View History

2021-12-19 10:28:41 +05:30
@use '../../partials/dir';
2021-09-09 00:47:26 -05:00
.profile-editor {
display: flex;
align-items: flex-start;
2021-09-09 00:47:26 -05:00
}
.profile-editor__input-wrapper {
flex: 1;
min-width: 0;
margin-top: 10px;
2021-09-09 00:47:26 -05:00
display: flex;
align-items: flex-end;
flex-wrap: wrap;
2021-09-09 00:47:26 -05:00
& > .input-container {
flex: 1;
}
& > button {
height: 46px;
margin-top: var(--sp-normal);
}
2021-09-09 00:47:26 -05:00
& > * {
2021-12-19 10:28:41 +05:30
@include dir.side(margin, var(--sp-normal), 0);
}
2021-09-09 00:47:26 -05:00
}