Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xArdy committed Nov 28, 2023
1 parent afc18c6 commit 961fcf1
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions docs/src/prophet-theme/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,25 @@ html.light .sidebar {
@media only screen and (min-width: 620px) {
.sidebar-visible .page-wrapper {
transform: none;
/* margin-left: var(--sidebar-width); */
margin-left: var(--sidebar-width);
}
}

.sidebar-visible .page-wrapper {
transform: translateX(var(--sidebar-width));
@media only screen and (max-width: 620px) {
/* .sidebar-visible .page-wrapper {
transform: none;
margin-left: var(--sidebar-width);
} */

.sidebar-visible .page-wrapper {
transform: translateX(var(--sidebar-width));
}
}

/* .sidebar-visible .page-wrapper {
transform: translateX(var(--sidebar-width));
} */

/* .no-js .page-wrapper,
.js:not(.sidebar-resizing) .page-wrapper {
transition: margin-left 0.3s ease, transform 0.3s ease;
Expand Down

0 comments on commit 961fcf1

Please sign in to comment.