openreplay/frontend/app/components/ui/Tabs/tabs.module.css
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

33 lines
No EOL
516 B
CSS

.tabs {
display: flex;
justify-content: flex-start;
align-items: center;
&.bordered {
border-bottom: solid thin $gray-light;
}
}
.tab {
padding: 10px 15px;
cursor: pointer;
transition: all 0.2s;
color: $gray-darkest;
border-bottom: solid thin transparent;
margin-bottom: -1px;
font-weight: 500;
white-space: nowrap;
&:hover {
color: $teal;
}
&.active {
color: $teal;
border-bottom: solid thin $teal;
}
}
.disabled {
pointer-events: none;
opacity: 0.5;
}