@import '../../global/globalCssVariables.scss'; .collectionSchemaView { cursor: default; .schema-table { background-color: $white; .schema-header-row, .schema-row { display: flex; flex-direction: row; .schema-column-header, .schema-table-cell, .row-menu { min-width: 50px; border: 1px solid $medium-gray; padding: 5px; overflow: hidden; } } .schema-header-row { justify-content: flex-end; .schema-column-header { font-weight: bold; } } .schema-row { justify-content: space-evenly; .row-menu { display: flex; flex-direction: row; justify-content: center; width: 100px; .row-button { width: 20px; height: 20px; border-radius: 100%; background-color: $dark-gray; color: white; padding: 5px; cursor: pointer; } } .row-cells { display: flex; flex-direction: row; justify-content: flex-end; } } } }