Skip to content

Commit

Permalink
Make >100% progbars overflow but not scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
wovenstarlight committed May 16, 2023
1 parent 608f6d0 commit 0195441
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions theme11/theme11.css
Original file line number Diff line number Diff line change
Expand Up @@ -351,14 +351,14 @@ span.curr { margin: 0 0.75em }
grid-column: 1 / span 2;
background-color: var(--bg);
border-radius: 0.25em;
overflow: hidden;
}
#progbars .prog::before {
content: "";
display: block;
height: 0.5em;
width: var(--progress);
background-color: var(--accent);
border-radius: 0.25em;
}
/* #endregion */
/* #region Sidebar: LEFT */
Expand Down Expand Up @@ -388,7 +388,10 @@ span.curr { margin: 0 0.75em }


/* #region FOOTER */
html, body { height: 100vh }
html, body {
height: 100vh;
overflow-x: hidden;
}
#body {
min-height: 100vh;
display: grid;
Expand Down Expand Up @@ -932,6 +935,7 @@ p.npf_chat { font-family: 'Monaco', 'Consolas', Courier, monospace }
overflow-y: scroll;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
overflow-x: hidden;
}
#right::-webkit-scrollbar { display: none }
.tmblr-iframe--unified-controls.iframe-controls--desktop ~ #body #right { padding-top: 50px }
Expand Down
Loading

0 comments on commit 0195441

Please sign in to comment.