mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Fix elements inside aligned box right/left don't get alignment properly
This commit is contained in:
parent
c29afdd7d2
commit
d3f21bf333
@ -30,6 +30,12 @@ export class Et2Box extends Et2Widget(LitElement) implements et2_IDetachedDOM
|
||||
align-items: stretch;
|
||||
gap: 5px;
|
||||
}
|
||||
:host([align="right"]) > div {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
:host([align="left"]) > div {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
/* CSS for child elements */
|
||||
::slotted(*) {
|
||||
flex: 1 0 auto;
|
||||
|
Loading…
Reference in New Issue
Block a user