FIX: Remove extra margin from share topic modal (#13549)

The styling between the "Create Invite" and "Share Topic" modals is
shared. The margin that was used to organize inputs in a list is not
needed for the "Share Topic" modal.
This commit is contained in:
Dan Ungureanu 2021-06-28 15:52:44 +03:00 committed by GitHub
parent 3dda926cb2
commit d015907668
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 2 deletions

View File

@ -856,8 +856,7 @@
.group-chooser, .group-chooser,
.user-chooser, .user-chooser,
.future-date-input-selector { .future-date-input-selector {
margin-left: 25px; width: 100%;
width: calc(100% - 25px);
} }
&.invite-to-topic input[type="radio"] { &.invite-to-topic input[type="radio"] {
@ -956,6 +955,19 @@
} }
} }
.create-invite-modal {
.input-group {
textarea#invite-message,
&.invite-to-topic input[type="text"],
.group-chooser,
.user-chooser,
.future-date-input-selector {
margin-left: 25px;
width: calc(100% - 25px);
}
}
}
.share-topic-modal { .share-topic-modal {
.sources { .sources {
align-items: center; align-items: center;