implement album sort

This commit is contained in:
Thomas Amland
2020-08-21 19:19:30 +02:00
parent 81102a9fa5
commit c6cfbdf131
4 changed files with 68 additions and 13 deletions
+2
View File
@@ -62,6 +62,8 @@ h1, h2, h3, h4, h5 {
box-shadow: none !important;
}
@import './nav';
$enable-print-styles: false;
$enable-responsive-font-sizes: true;
+28
View File
@@ -0,0 +1,28 @@
ul.nav-underlined {
white-space: nowrap;
overflow-x: auto;
scrollbar-width: none;
padding-left: 0;
li {
display: inline-block;
float: none;
a {
display: block;
padding: 0.5rem 1rem;
}
a:hover, a:focus {
text-decoration: none;
}
a.active {
border-bottom: 2px solid;
}
a.active:hover {
color: var(--primary);
}
}
}
ul.nav-underlined::-webkit-scrollbar {
display: none;
}