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

30 lines
459 B
SCSS
Raw Normal View History

2021-09-09 14:47:26 +09:00
.profile-editor {
display: flex;
align-items: flex-start;
2021-09-09 14:47:26 +09:00
}
.profile-editor__input-wrapper {
flex: 1;
min-width: 0;
margin-top: 10px;
2021-09-09 14:47:26 +09:00
display: flex;
align-items: flex-end;
flex-wrap: wrap;
2021-09-09 14:47:26 +09:00
& > .input-container {
flex: 1;
}
& > button {
height: 46px;
margin-top: var(--sp-normal);
}
2021-09-09 14:47:26 +09:00
& > * {
margin-left: var(--sp-normal);
[dir=rtl] & {
margin-left: 0;
margin-right: var(--sp-normal);
}
}
2021-09-09 14:47:26 +09:00
}