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

41 lines
715 B
SCSS
Raw Normal View History

2021-12-19 10:28:41 +05:30
@use '../../partials/dir';
2022-03-21 09:46:11 +05:30
@use '../../partials/flex';
2021-12-19 10:28:41 +05:30
2021-09-09 00:47:26 -05:00
.profile-editor {
display: flex;
2022-03-21 09:46:11 +05:30
align-items: flex-end;
2021-09-09 00:47:26 -05:00
}
2022-03-21 09:46:11 +05:30
.profile-editor__info,
.profile-editor__form {
@extend .cp-fx__item-one;
@include dir.side(margin, var(--sp-loose), 0);
2021-09-09 00:47:26 -05:00
display: flex;
2022-03-21 09:46:11 +05:30
}
.profile-editor__info {
flex-direction: column;
& > div:first-child {
display: flex;
align-items: center;
}
.ic-btn {
margin: 0 var(--sp-extra-tight);
}
}
.profile-editor__form {
margin-top: 10px;
flex-wrap: wrap;
2022-03-21 09:46:11 +05:30
align-items: flex-end;
2021-09-09 00:47:26 -05:00
& > .input-container {
2022-03-21 09:46:11 +05:30
@extend .cp-fx__item-one;
}
& > button {
height: 46px;
margin-top: var(--sp-normal);
2021-12-19 10:28:41 +05:30
@include dir.side(margin, var(--sp-normal), 0);
}
2022-03-21 09:46:11 +05:30
2021-09-09 00:47:26 -05:00
}