:host { display: flex; flex-direction: column; border-radius: 5px; height: 175px; } #empty { height: 175px; display: flex; align-items: center; color: #878787; } #needList { display: flex; flex-direction: row; /*padding: 10px;*/ gap: 10px; justify-content: start; overflow: auto; } .needEntry { padding: 10px; display: flex; flex-direction: column; background-color: #3a3a3a; 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: #444444; } .needName { font-weight: bold; } .needType { text-transform: uppercase; /*font-weight: 300;*/ font-size: 10pt; }