Bugfix: incorrect scrollbars/spacing when editing container with many assignments
This commit is contained in:
parent
54659f5c77
commit
f57cf92f41
1 changed files with 22 additions and 1 deletions
|
@ -23,6 +23,15 @@ body {
|
|||
max-inline-size: calc(var(--overflow-size) + 299px);
|
||||
}
|
||||
|
||||
/**
|
||||
Bugfix: incorrect scrollbars/spacing when editing container with many assignments
|
||||
https://github.com/mozilla/multi-account-containers/issues/948
|
||||
*/
|
||||
html,
|
||||
body {
|
||||
block-size: 100%;
|
||||
}
|
||||
|
||||
:root {
|
||||
--primary-action-color: #248aeb;
|
||||
--title-text-color: #000;
|
||||
|
@ -785,8 +794,20 @@ span ~ .panel-header-text {
|
|||
padding-inline-start: 16px;
|
||||
}
|
||||
|
||||
/**
|
||||
Bugfix: incorrect scrollbars/spacing when editing container with many assignments
|
||||
https://github.com/mozilla/multi-account-containers/issues/948
|
||||
*/
|
||||
.edit-container-panel .columns {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#edit-sites-assigned {
|
||||
flex: 1;
|
||||
/**
|
||||
Bugfix: incorrect scrollbars/spacing when editing container with many assignments
|
||||
https://github.com/mozilla/multi-account-containers/issues/948
|
||||
*/
|
||||
flex: 1000;
|
||||
}
|
||||
|
||||
#edit-sites-assigned h3 {
|
||||
|
|
Loading…
Add table
Reference in a new issue