// Tabs // -------------------------------------------------- $tab-bar-background-color: #f7f7f8 !default; $tab-bar-item-padding: 10px !default; $tab-bar-item-min-width: 80px !default; $tab-bar-item-max-width: 160px !default; .tabs { display: flex; flex-direction: column; height: 100%; } [tab-bar-placement="top"] > .tab-bar-container { order: $flex-order-tab-bar-top; } [tab-bar-placement="bottom"] > .tab-bar-container { order: $flex-order-tab-bar-bottom; } .tab-bar { display: flex; justify-content: center; overflow: hidden; background: $tab-bar-background-color; } .tab-bar-item { display: flex; flex-direction: column; justify-content: center; flex: 1; align-self: center; align-items: center; padding: $tab-bar-item-padding; min-width: $tab-bar-item-min-width; max-width: $tab-bar-item-max-width; text-align: center; cursor: pointer; user-select: none; border: 0; background: none; } [tab-bar-icons="bottom"] > .tab-bar-container .tab-bar-item { .tab-bar-item-icon { order: 10; } } [tab-bar-icons="left"] > .tab-bar-container .tab-bar-item { flex-direction: row; .tab-bar-item-icon { text-align: right; padding-right: 5px; } } [tab-bar-icons="right"] > .tab-bar-container .tab-bar-item { flex-direction: row; .tab-bar-item-icon { order: 10; text-align: left; padding-left: 5px; } } .tab-bar-item-text, .tab-bar-item-icon { align-self: center; min-width: 26px; max-width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .tab-bar-icon-only .tab-bar-item-text, .tab-bar-text-only .tab-bar-item-icon { display: none; } .tab-bar-item:hover { opacity: 0.6; } .tab-bar-item[aria-selected="true"] { color: red; }