52 lines
937 B
SCSS
52 lines
937 B
SCSS
.tabs {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: var(--space-between-block);
|
|
&.m--btns{
|
|
gap: 10px;
|
|
@mixin responsive-xs {
|
|
.button{
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
}
|
|
&__item {
|
|
border: none;
|
|
background: none;
|
|
color: var(--color-white);
|
|
text-transform: uppercase;
|
|
font-size: 2rem;
|
|
margin-right: 10px;
|
|
position: relative;
|
|
display: flex;
|
|
padding: 0;
|
|
transition: all 0.5s ease;
|
|
|
|
&:after {
|
|
content: '';
|
|
display: block;
|
|
background: var(--color-white);
|
|
border-radius: 20px;
|
|
height: 100%;
|
|
width: 3px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
&:last-child {
|
|
margin: 0;
|
|
|
|
&:after {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&.is-active, &:hover {
|
|
color: transparent;
|
|
-webkit-background-clip: text;
|
|
background-image: var(--linear-gradient);
|
|
cursor: url("./assets/img/icon/cursor.svg"), auto;
|
|
}
|
|
}
|
|
}
|