Skip to content

Commit 7d4ec9a

Browse files
committed
After Julien's review
1 parent 981cdd4 commit 7d4ec9a

File tree

5 files changed

+19
-18
lines changed

5 files changed

+19
-18
lines changed

scss/ouds-web.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
@import "mixins/banner";
2+
23
@include bsBanner("");
34

45
// scss-docs-start import-stack
@@ -14,7 +15,6 @@
1415
@import "mixins";
1516
@import "utilities";
1617

17-
1818
// Layout & components
1919
@import "root";
2020
@import "reboot";

site/content/docs/0.0/layout/breakpoints.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ OUDS Web primarily uses the following media query ranges—or breakpoints—in o
6666

6767
// Usage
6868

69-
// Example: Hide starting at `min-width: 0`, and then show at the `sm` breakpoint
69+
// Example: Hide starting at `min-width: 0`, and then show at the `xs` breakpoint
7070
.custom-class {
7171
display: none;
7272
}
73-
@include media-breakpoint-up(sm) {
73+
@include media-breakpoint-up(xs) {
7474
.custom-class {
7575
display: block;
7676
}

site/content/docs/0.0/layout/columns.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ $utilities: map-merge(
266266

267267
### Offsetting columns
268268

269-
You can offset grid columns in two ways: our responsive `.offset-` grid classes and our [margin utilities]({{< docsref "/utilities/spacing" >}}). Grid classes are sized to match columns while margins are more useful for quick layouts where the width of the offset is variable.
269+
You can offset grid columns with <!--in two ways: -->our responsive `.offset-` grid classes<!-- and our [margin utilities]({{< docsref "/utilities/spacing" >}})-->. Grid classes are sized to match columns<!-- while margins are more useful for quick layouts where the width of the offset is variable-->.
270270

271271
#### Offset classes
272272

@@ -303,7 +303,7 @@ In addition to column clearing at responsive breakpoints, you may need to reset
303303
</div>
304304
{{< /example >}}
305305

306-
#### Margin utilities
306+
<!-- #### Margin utilities
307307
308308
With flexbox grids, you can use margin utilities like `.me-auto` to force sibling columns away from one another.
309309
@@ -322,7 +322,7 @@ With flexbox grids, you can use margin utilities like `.me-auto` to force siblin
322322
<div class="col-auto">.col-auto</div>
323323
</div>
324324
</div>
325-
{{< /example >}}
325+
{{< /example >}} -->
326326

327327
## Standalone column classes
328328

site/content/docs/0.0/migration-from-boosted.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ Technically, it means that you can get rid of the following things:
316316
<summary><span class="badge text-bg-success">New</span> Sass maps:</summary>
317317
<ul>
318318
<li><code>$grid-gutter-widths</code></li>
319+
<li><code>$gutters</code></li>
319320
<li><code>$ouds-border-radiuses</code></li>
320321
<li><code>$ouds-border-styles</code></li>
321322
<li><code>$ouds-border-widths</code></li>

site/content/docs/0.0/utilities/api.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -487,8 +487,8 @@ You can enable responsive classes for an existing set of utilities that are not
487487

488488
$utilities: map-merge(
489489
$utilities, (
490-
"border": map-merge(
491-
map-get($utilities, "border"),
490+
"border-ouds": map-merge(
491+
map-get($utilities, "border-ouds"),
492492
( responsive: true ),
493493
),
494494
)
@@ -501,41 +501,41 @@ This will now generate responsive variations of `.border` and `.border-0` for ea
501501

502502
```css
503503
.border { ... }
504-
.border-0 { ... }
504+
.border-none { ... }
505505

506506
@media (min-width: 390px) {
507507
.border-xs { ... }
508-
.border-xs-0 { ... }
508+
.border-xs-none { ... }
509509
}
510510

511511
@media (min-width: 480px) {
512512
.border-sm { ... }
513-
.border-sm-0 { ... }
513+
.border-sm-none { ... }
514514
}
515515

516516
@media (min-width: 736px) {
517517
.border-md { ... }
518-
.border-md-0 { ... }
518+
.border-md-none { ... }
519519
}
520520

521521
@media (min-width: 1024px) {
522522
.border-lg { ... }
523-
.border-lg-0 { ... }
523+
.border-lg-none { ... }
524524
}
525525

526526
@media (min-width: 1320px) {
527527
.border-xl { ... }
528-
.border-xl-0 { ... }
528+
.border-xl-none { ... }
529529
}
530530

531531
@media (min-width: 1640px) {
532532
.border-2xl { ... }
533-
.border-2xl-0 { ... }
533+
.border-2xl-none { ... }
534534
}
535535

536536
@media (min-width: 1880px) {
537537
.border-3xl { ... }
538-
.border-3xl-0 { ... }
538+
.border-3xl-none { ... }
539539
}
540540
```
541541

@@ -636,8 +636,8 @@ $utilities: map-merge(
636636
"width": null,
637637

638638
// Make an existing utility responsive
639-
"border": map-merge(
640-
map-get($utilities, "border"),
639+
"border-ouds": map-merge(
640+
map-get($utilities, "border-ouds"),
641641
( responsive: true ),
642642
),
643643

0 commit comments

Comments
 (0)