@rhavenside/baseline-ui 1.0.24 → 1.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/baseline.css +23 -0
- package/dist/baseline.css.map +1 -1
- package/dist/baseline.min.css +1 -1
- package/package.json +1 -1
- package/src/components/_sidebar.scss +18 -0
- package/src/layout/_container.scss +10 -0
package/dist/baseline.css
CHANGED
|
@@ -620,6 +620,16 @@ textarea {
|
|
|
620
620
|
padding-right: var(--spacing-md);
|
|
621
621
|
}
|
|
622
622
|
|
|
623
|
+
.bl-container-sidebar {
|
|
624
|
+
margin-left: 17.5rem;
|
|
625
|
+
}
|
|
626
|
+
@media (max-width: 768px) {
|
|
627
|
+
.bl-container-sidebar {
|
|
628
|
+
margin-left: 0;
|
|
629
|
+
padding: var(--spacing-md);
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
|
|
623
633
|
.bl-row {
|
|
624
634
|
display: flex;
|
|
625
635
|
flex-wrap: wrap;
|
|
@@ -5400,6 +5410,9 @@ textarea {
|
|
|
5400
5410
|
height: 100vh;
|
|
5401
5411
|
min-height: auto;
|
|
5402
5412
|
}
|
|
5413
|
+
.bl-sidebar.bl-sidebar-persistent .bl-sidebar-close {
|
|
5414
|
+
display: none;
|
|
5415
|
+
}
|
|
5403
5416
|
}
|
|
5404
5417
|
@media (max-width: 767.98px) {
|
|
5405
5418
|
.bl-sidebar.bl-sidebar-persistent {
|
|
@@ -5409,6 +5422,9 @@ textarea {
|
|
|
5409
5422
|
.bl-sidebar.bl-sidebar-persistent.bl-sidebar-open {
|
|
5410
5423
|
transform: translateX(0);
|
|
5411
5424
|
}
|
|
5425
|
+
.bl-sidebar.bl-sidebar-persistent .bl-sidebar-close {
|
|
5426
|
+
display: block;
|
|
5427
|
+
}
|
|
5412
5428
|
}
|
|
5413
5429
|
|
|
5414
5430
|
.bl-sidebar-backdrop {
|
|
@@ -5502,6 +5518,13 @@ textarea {
|
|
|
5502
5518
|
}
|
|
5503
5519
|
}
|
|
5504
5520
|
|
|
5521
|
+
.bl-sidebar-content {
|
|
5522
|
+
padding: var(--spacing-lg);
|
|
5523
|
+
overflow-y: auto;
|
|
5524
|
+
overflow-x: hidden;
|
|
5525
|
+
height: 100%;
|
|
5526
|
+
}
|
|
5527
|
+
|
|
5505
5528
|
.bl-sidebar-nav {
|
|
5506
5529
|
flex: 1;
|
|
5507
5530
|
padding: var(--spacing-md);
|