51 lines
861 B
SCSS
51 lines
861 B
SCSS
.horizionalTabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.tab-list {
|
|
flex-shrink: 0;
|
|
padding-left: 0;
|
|
display: flex;
|
|
align-items: bottom;
|
|
|
|
&::after {
|
|
content: "";
|
|
flex: 1;
|
|
margin-bottom: -1px;
|
|
border-bottom: 1px solid;
|
|
background-color: inherit;
|
|
}
|
|
}
|
|
|
|
.tab-list-item {
|
|
display: inline-block;
|
|
list-style: none;
|
|
margin-bottom: -1px;
|
|
padding: 0.5rem 0.75rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.tab-list-active {
|
|
border: solid;
|
|
border-width: 1px 1px 0 1px;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.tab-list-inactive {
|
|
border: solid;
|
|
border-width: 0 0 1px 0;
|
|
background-color: inherit;
|
|
}
|
|
|
|
> div:last-child {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
}
|
|
}
|
|
|
|
.error-icon {
|
|
margin-left: 6px;
|
|
color: $red;
|
|
}
|