finished up scan page, added the ability to add miners and them get listed in the miner list, and started adding the individual miner pages

This commit is contained in:
UpstreamData
2022-03-01 12:28:36 -07:00
parent 385943755d
commit 3558a1a6b1
3 changed files with 60 additions and 23 deletions

View File

@@ -130,3 +130,22 @@ main {
border-color: transparent;
box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
.btn-toggle-nav{
max-height: 300px;
-webkit-overflow-scrolling: touch;
}
/* Scrollbar */
.btn-toggle-nav::-webkit-scrollbar {
width: 5px;
}
.btn-toggle-nav::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
.btn-toggle-nav::-webkit-scrollbar-thumb {
background-image: linear-gradient(180deg, #D0368A 0%, #708AD4 99%);
box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
border-radius: 100px;
}