implement album sort
This commit is contained in:
@@ -62,6 +62,8 @@ h1, h2, h3, h4, h5 {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
@import './nav';
|
||||
|
||||
$enable-print-styles: false;
|
||||
$enable-responsive-font-sizes: true;
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user