50 lines
862 B
SCSS
50 lines
862 B
SCSS
@use "../../../styles/mixins";
|
|
|
|
.root {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
z-index: 0;
|
|
padding-inline: 1.25rem;
|
|
padding-top: 1.25rem;
|
|
overflow-y: scroll;
|
|
|
|
@include mixins.adapt-padding-to-scrollbar(1rem);
|
|
}
|
|
|
|
.search {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
padding: 0.5rem;
|
|
padding-block: 0.25rem;
|
|
justify-content: space-between;
|
|
display: flex;
|
|
padding-bottom: 0.5rem;
|
|
}
|
|
|
|
.section-content {
|
|
display: grid;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 0.125rem;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
padding: 0.125rem;
|
|
padding-bottom: 1.25em;
|
|
}
|
|
|
|
.showMoreLink {
|
|
color: var(--color-links);
|
|
cursor: pointer;
|
|
transition: opacity 0.2s ease-in;
|
|
|
|
&:hover, &:active {
|
|
background-color: transparent !important;
|
|
opacity: 0.85;
|
|
}
|
|
}
|