﻿/* define ComparatorDropdownButton */
:root {
    --max-rows: 5;
    --row-height: 29px;
}

.ComparatorDropdownButton-Item > .dropdown-item {
    padding: 0.25rem;
}

.ComparatorDropdownButton .dropdown-menu.show {
    max-height: calc(var(--max-rows) * var(--row-height) + 1rem);
    overflow: auto;
}
