mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 15:16:04 +08:00
39 lines
623 B
SCSS
39 lines
623 B
SCSS
.user-status.modal {
|
|
.modal-inner-container {
|
|
box-sizing: border-box;
|
|
min-width: 310px;
|
|
}
|
|
|
|
.modal-footer {
|
|
margin: 0;
|
|
border-top: 0;
|
|
padding: 10px 0;
|
|
|
|
.delete-status {
|
|
margin-left: auto;
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
.modal-body {
|
|
width: 375px;
|
|
box-sizing: border-box;
|
|
|
|
@media (max-width: 600px) {
|
|
width: 100%;
|
|
}
|
|
|
|
.ember-text-field.user-status-description {
|
|
min-width: 220px;
|
|
width: 100%;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
.user-status-description-wrap {
|
|
display: inline-flex;
|
|
width: 100%;
|
|
align-items: end;
|
|
}
|
|
}
|
|
}
|