openreplay/frontend/app/components/Session/Tabs/tabs.module.css
Delirium 309a9fd970
feat: tag and watch (UI/Tracker) (#1822)
* feat(ui/tracker): start tag n watch

* fix(tracker): test coverage, fix some watcher api

* fix(tracker): add intersectionobserver, adjust tests

* feat(tracker): relay + apollo plugins

* feat(ui): tags search

* feat(ui): tags name edit

* feat(ui): tags search icon

* feat(ui): icons for tabs in player

* feat(ui): save and find button

* feat(tracker): save tags in session storage (just in case)

* feat(ui): improve loading

* feat(ui): fix icon names gen

* feat(ui): fix typo
2024-01-19 11:11:27 +01:00

37 lines
621 B
CSS

.tabs {
display: flex;
height: 100%;
width: 100%;
justify-content: space-around;
align-items: center;
font-size: 16px;
&.bordered {
border-bottom: solid thin $gray-light;
}
}
.tab {
padding: 14px 0;
text-align: center;
text-transform: uppercase;
flex: 1;
cursor: pointer;
transition: all 0.2s;
color: $gray-darkest;
font-weight: 500;
white-space: nowrap;
&:hover {
color: $teal;
}
&.active {
color: $teal;
border-bottom: solid thin $teal;
}
}
.disabled {
pointer-events: none;
opacity: 0.5;
}