Changed sort filters to tabs.

This commit is contained in:
2020-05-25 02:02:28 +02:00
parent f4c85b7a67
commit b180572d5f
2101 changed files with 335 additions and 467 deletions

View File

@@ -208,19 +208,19 @@ export default {
}
.sidebar {
background: $profile;
background: var(--profile);
height: 100%;
width: 18rem;
display: flex;
flex-direction: column;
flex-shrink: 0;
color: $text-contrast;
color: var(--text-light);
overflow: hidden;
.title {
display: flex;
justify-content: center;
border-bottom: solid 1px $highlight-hint;
border-bottom: solid 1px var(--highlight-hint);
}
&.expanded {
@@ -240,7 +240,7 @@ export default {
grid-template-columns: 1fr;
grid-template-rows: repeat(auto-fit, 6rem);
overflow-y: auto;
scrollbar-color: $highlight-weak $profile;
scrollbar-color: var(--highlight-weak) var(--profile);
}
.logo {
@@ -251,7 +251,7 @@ export default {
object-fit: contain;
box-sizing: border-box;
padding: 1rem;
filter: $logo-highlight;
filter: var(--logo-highlight);
}
.parent {
@@ -265,8 +265,8 @@ export default {
flex-direction: column;
align-items: center;
flex-shrink: 0;
border-bottom: solid 1px $shadow-hint;
background: $profile;
border-bottom: solid 1px var(--shadow-hint);
background: var(--profile);
&.hideable {
display: none;
@@ -281,7 +281,7 @@ export default {
.sites.compact {
display: none;
background: $profile;
background: var(--profile);
grid-row: 1;
}