mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
35 lines
523 B
SCSS
35 lines
523 B
SCSS
@import '../constants/colors';
|
|
@import '../constants/dimensions';
|
|
|
|
.ReactTabs {
|
|
.ReactTabs__TabList {
|
|
flex-shrink: 0;
|
|
align-items: flex-start;
|
|
align-content: flex-start;
|
|
}
|
|
|
|
.ReactTabs__Tab {
|
|
align-self: flex-start;
|
|
|
|
button {
|
|
color: $hl-xxl;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.ReactTabs__Tab--selected {
|
|
button {
|
|
color: inherit;
|
|
}
|
|
|
|
&,
|
|
button:hover {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
.ReactTabs__TabPanel {
|
|
//border-top: 1px solid $hl-sm;
|
|
}
|
|
}
|