44 lines
726 B
SCSS
44 lines
726 B
SCSS
.Topics {
|
|
@include font-size(1.4rem);
|
|
|
|
height: 6rem;
|
|
line-height: 6rem;
|
|
margin-bottom: 3rem;
|
|
overflow: hidden;
|
|
position: relative;
|
|
transform: translateY(-2px);
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
padding: 0 divide($container-padding-x, 2);
|
|
}
|
|
|
|
.list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
font-weight: 500;
|
|
list-style: none;
|
|
margin-top: 0;
|
|
padding: 0 7em 0 0;
|
|
position: relative;
|
|
}
|
|
|
|
.item {
|
|
margin-right: 2.4rem;
|
|
|
|
&.right {
|
|
margin-right: 0;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
a {
|
|
border-bottom: unset;
|
|
&.selected {
|
|
font-weight: 500;
|
|
border-bottom: 2px solid var(--default-color);
|
|
}
|
|
}
|
|
}
|
|
}
|