28 lines
507 B
SCSS
28 lines
507 B
SCSS
@import '../dependencies/mixins/profile-form';
|
|
|
|
.user-profile {
|
|
@include profile-form;
|
|
max-width: 780px;
|
|
.submit-button {
|
|
width: 100%;
|
|
}
|
|
|
|
.actions {
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: .5rem;
|
|
}
|
|
|
|
.download-profile,
|
|
.delete-account {
|
|
@include font-size(small);
|
|
display: block;
|
|
flex: 1;
|
|
margin-top: .5rem;
|
|
}
|
|
.delete-account {
|
|
text-align: right;
|
|
}
|
|
}
|