Skip to content

Commit

Permalink
fix(a11y): reset white background for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
astagi committed Apr 18, 2023
1 parent 04cabf3 commit 939e9e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/form/input.md
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ Includendo l'elemento all'interno di un `.form-group`, la label assumerà lo ste
<input type="text" class="form-control" id="input-text-normal" placeholder="Inserisci il tuo nome">
</div>
<div class="form-group">
<label class="active" for="input-text-lg">Piccolo</label>
<label class="active" for="input-text-sm">Piccolo</label>
<input type="text" class="form-control form-control-sm" id="input-text-sm" placeholder="Inserisci il tuo nome">
</div>
{% endcapture %}{% include example.html content=example %}
2 changes: 1 addition & 1 deletion src/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ $font-family-sans-serif: 'Titillium Web', Geneva, Tahoma, sans-serif !default;
$font-family-monospace: 'Roboto Mono', monospace !default;
$font-family-base: $font-family-sans-serif;
$text-color: $gray-700 !default;
$text-muted: $gray-tertiary !default;
$text-muted: $color-text-muted !default;
$letter-spacing-base: 0;
$line-height-base: 1.5;
$font-weight-base: 300;
Expand Down
1 change: 1 addition & 0 deletions src/scss/custom/_type.scss
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ blockquote,
caption {
font-size: 0.777rem;
line-height: 1.4285;
color: $color-text-muted;
}

b,
Expand Down

0 comments on commit 939e9e9

Please sign in to comment.