Skip to content

Commit

Permalink
changed display classname and reordering of tables and small definition
Browse files Browse the repository at this point in the history
  • Loading branch information
vprothais committed Nov 12, 2024
1 parent 6425606 commit 1dd77de
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 43 deletions.
2 changes: 1 addition & 1 deletion scss/_reboot.scss
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ strong {
// Add the correct font size in all browsers

small {
@include font-size($small-font-size);
@extend %body-small; // OUDS mod: instead of `@include font-size($small-font-size)`
}


Expand Down
20 changes: 17 additions & 3 deletions scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -775,11 +775,25 @@ $headings-color: inherit !default;

// scss-docs-start display-headings
$display-font-sizes: (
1: "%display-large",
2: "%display-medium",
3: "%display-small"
large: "%display-large",
medium: "%display-medium",
small: "%display-small"
) !default;

@if $enable-bootstrap-compatibility {
$display-font-sizes: map-merge(
$display-font-sizes,
(
1: "%display-large",
2: "%display-medium",
3: "%display-small",
4: "%heading-xlarge",
5: "%heading-large",
6: "%heading-medium",
)
);
}

$display-font-family: null !default;
$display-font-style: null !default;
$display-font-weight: $ouds-font-weight-web-display !default;
Expand Down
Loading

0 comments on commit 1dd77de

Please sign in to comment.