This commit is contained in:
cuom1999 2023-09-01 18:52:25 -05:00
parent ef47461ee9
commit 036509c47f
2 changed files with 10 additions and 1 deletions

View file

@ -269,6 +269,15 @@ input {
overflow-x: auto; overflow-x: auto;
overflow-y: hidden; overflow-y: hidden;
&::-webkit-scrollbar {
width: 0.1rem; // Adjust the width as needed
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
background-color: transparent;
}
> li { > li {
position: relative; position: relative;
display: block; display: block;

View file

@ -202,7 +202,7 @@
</svg> </svg>
<nav id="navigation" class="unselectable"> <nav id="navigation" class="unselectable">
<div id="nav-container"> <div id="nav-container">
<a id="navicon" href="javascript:void(0)"><i class="fa fa-bars"></i></a> <span id="navicon"><i class="fa fa-bars"></i></span>
<ul id="nav-list"> <ul id="nav-list">
<li class="home-nav-element"><a href="{{ url('home') }}">{% include "site-logo-fragment.html" %}</a></li> <li class="home-nav-element"><a href="{{ url('home') }}">{% include "site-logo-fragment.html" %}</a></li>
<li class="home-nav-element"><span class="nav-divider"></span></li> <li class="home-nav-element"><span class="nav-divider"></span></li>