This commit is contained in:
2026-03-03 16:30:57 +07:00
parent a13304e40e
commit c253e1a370
7569 changed files with 1324841 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
/* Miscellanoeous */
body {
background: $sidebar-light-bg;
}
body,
html {
overflow-x: hidden;
}
.content-wrapper {
background: $content-bg;
margin-left: $sidebar-width-lg;
min-height: 100vh;
padding: 1.5rem 1.7rem;
transition: width $action-transition-duration $action-transition-timing-function, margin $action-transition-duration $action-transition-timing-function;
width: calc(100% - #{$sidebar-width-lg});
@media (max-width: 991px) {
margin-left: 0;
width: 100%;
}
&.full-page-wrapper {
margin-left: 0;
width: 100%;
}
}
.container-scroller {
overflow: hidden;
}
pre {
background: color(gray-lighter);
padding: 15px;
font-size: 14px;
}
code {
background: color(gray-lightest);
padding: .2rem .4rem;
}