Skip to content

Commit

Permalink
Fixed sidebar scroll issue
Browse files Browse the repository at this point in the history
  • Loading branch information
seb646 committed Jul 16, 2023
1 parent 93dbc49 commit e261422
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 30 deletions.
Binary file added assets/images/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 40 additions & 11 deletions assets/styles/output.css
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,10 @@ video {
position: relative;
}

.inset-0 {
inset: 0px;
}

.bottom-10 {
bottom: 2.5rem;
}
Expand All @@ -600,10 +604,22 @@ video {
right: 2.5rem;
}

.right-auto {
right: auto;
}

.top-\[3\.8125rem\] {
top: 3.8125rem;
}

.z-10 {
z-index: 10;
}

.z-20 {
z-index: 20;
}

.col-span-3 {
grid-column: span 3 / span 3;
}
Expand Down Expand Up @@ -645,12 +661,12 @@ video {
margin-top: 0.75rem;
}

.flex {
display: flex;
.block {
display: block;
}

.hidden {
display: none;
.flex {
display: flex;
}

.h-14 {
Expand All @@ -665,6 +681,10 @@ video {
height: 1.5rem;
}

.h-full {
height: 100%;
}

.w-14 {
width: 3.5rem;
}
Expand All @@ -677,12 +697,12 @@ video {
width: 1.5rem;
}

.max-w-full {
max-width: 100%;
.w-\[22rem\] {
width: 22rem;
}

.resize {
resize: both;
.max-w-full {
max-width: 100%;
}

.list-decimal {
Expand Down Expand Up @@ -721,6 +741,10 @@ video {
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.overflow-y-auto {
overflow-y: auto;
}

.rounded {
border-radius: 0.25rem;
}
Expand Down Expand Up @@ -883,7 +907,7 @@ ul.list-dash li p {
#toc ol li a.nav-link{
border-left: 4px solid #eee;
padding-left: 0.75rem;
font-weight: bold;
font-weight: 600;
font-size: 0.95rem;
padding-bottom: 0.25rem;
color: #515151;
Expand Down Expand Up @@ -915,8 +939,8 @@ ul.list-dash li p {
position: fixed;
}

.lg\:flex {
display: flex;
.lg\:left-\[max\(0px\2c calc\(50\%-45rem\)\)\] {
left: max(0px,calc(50% - 45rem));
}

.lg\:grid {
Expand Down Expand Up @@ -951,6 +975,11 @@ ul.list-dash li p {
padding-left: 0px;
padding-right: 0px;
}

.lg\:px-8 {
padding-left: 2rem;
padding-right: 2rem;
}
}

@media (min-width: 1280px) {
Expand Down
Loading

0 comments on commit e261422

Please sign in to comment.