RED-9890 - New created component-definition is not displayed in the list of component-definitions

This commit is contained in:
Valentin Mihai 2024-08-15 09:15:03 +03:00
parent 1bcd1869f0
commit c7e03043e0

View File

@ -49,6 +49,8 @@
.content-container { .content-container {
background-color: var(--iqser-grey-6); background-color: var(--iqser-grey-6);
height: 100vh; height: 100vh;
display: flex;
flex-direction: column;
.content-header { .content-header {
display: flex; display: flex;
@ -65,6 +67,7 @@
} }
.content { .content {
flex: 1;
display: flex; display: flex;
gap: 20px; gap: 20px;
overflow: hidden; overflow: hidden;
@ -72,7 +75,8 @@
.components-list { .components-list {
flex: 1; flex: 1;
background-color: var(--iqser-white); background-color: var(--iqser-white);
width: 100%; display: flex;
flex-direction: column;
.header { .header {
height: 30px; height: 30px;