Untitled

                Never    
CSS
       
/* Corrected CSS targeting the inline display of text and icons */
.bx--data-table-v2 th {
    /* Keep the default table cell display settings */
    padding: 4px; /* Adjusted padding */
}

.header-text, .custom-overflow-icon {
    display: inline-block;
    vertical-align: middle;
}

.custom-overflow-icon {
    margin-left: 4px; /* Reduced margin to keep the icon closer to the text */
}

.custom-overflow-icon img {
    width: 16px; /* Icon size adjustments if needed */
    height: auto;
}

Raw Text