:host { display: flex; flex-direction: column; border-radius: 5px; height: 175px; } #empty { height: 175px; display: flex; align-items: center; color: gray; } #needList { display: flex; flex-direction: row; /*padding: 10px;*/ gap: 10px; justify-content: start; overflow-x: auto; overflow-y: clip; } .needEntry { padding: 10px; display: flex; flex-direction: column; background-color: var(--secondary-color); border-radius: 5px; height: 175px; width: 200px; justify-content: space-between; div { display: flex; flex-direction: column; } user-select: none; cursor: pointer; } .needEntry:hover { background-color: var(--hover-color); } .needName { font-weight: bold; } .needType { text-transform: uppercase; /*font-weight: 300;*/ font-size: 10pt; }