You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plain-ui/src/scss/components/_tabs.scss

58 lines
1.2 KiB

/**
*
*
*
*/
@mixin plain-ui__component__tabs()
{
.tabs {
display: flex;
flex-direction: column;
width: 100%;
@include plain-ui__media-sm() {
width: auto;
flex-direction: row;
}
&__item {
min-height: 2.8em;
display: flex;
align-items: center;
padding: 0 1em;
background-color: white;
transition: background-color 0.1s;
background-color: white;
color: $plain-ui__primary-light;
border: 1px solid $plain-ui__primary-light;
border-bottom-width: 0;
width: 100%;
@include plain-ui__media-sm() {
width: auto;
display: inline-flex;
border-right-width: 0;
border-bottom-width: 1px;
}
&:hover, &--selected {
cursor: pointer;
background-color: lighten($plain-ui__primary-light, 10%);
color: white;
border-color: lighten($plain-ui__primary-light, 10%);
}
&:last-child {
border-bottom-width: 1px;
}
}
}
}