mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 15:19:49 -04:00
Merge pull request #1174 from GSA/1166-team-member-card-bug
1166 team member card bug
This commit is contained in:
@@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
return $(`<div class="selection-footer${stickyClass}">
|
return $(`<div class="selection-footer${stickyClass}">
|
||||||
<button
|
<button
|
||||||
class="govuk-button govuk-button--secondary selection-footer__button"
|
class="govuk-button govuk-button--secondary selection-footer__button usa-button usa-button--outline"
|
||||||
aria-expanded="${expanded ? 'true' : 'false'}"
|
aria-expanded="${expanded ? 'true' : 'false'}"
|
||||||
aria-controls="${this.fieldsetId}">
|
aria-controls="${this.fieldsetId}">
|
||||||
${buttonContent}
|
${buttonContent}
|
||||||
|
|||||||
@@ -140,15 +140,17 @@ td.table-empty-message {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.user-list {
|
.user-list {
|
||||||
display: inline-flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: units(4);
|
justify-content: space-between;
|
||||||
|
padding: 1rem;
|
||||||
.user-list-item {
|
.user-list-item {
|
||||||
@include at-media(desktop) {
|
@include at-media(desktop) {
|
||||||
flex: 1 1 calc(50% - units(2));
|
width: calc(50% - units(1));
|
||||||
flex-grow: 0;
|
margin-bottom: 1rem;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
flex: 1 1 calc(100% - units(2));
|
// flex: 1 1 calc(100% - units(2));
|
||||||
border: 1px solid color('gray-cool-10');
|
border: 1px solid color('gray-cool-10');
|
||||||
padding: units(2);
|
padding: units(2);
|
||||||
.tick-cross-list-permissions {
|
.tick-cross-list-permissions {
|
||||||
|
|||||||
Reference in New Issue
Block a user