Fix several typos throughout the project

This commit is contained in:
Igor Putina 2024-09-27 23:45:54 +03:00
parent 6dc6489e69
commit dc7f6d0a07
126 changed files with 133 additions and 133 deletions

38
scss/content/_misc.scss Normal file
View file

@ -0,0 +1,38 @@
@use "sass:map";
@use "../settings" as *;
@if map.get($modules, "content/misc") {
/**
* Misc
*/
// Reboot based on :
// - normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
// - sanitize.css v13.0.0 | CC0 1.0 Universal | github.com/csstools/sanitize.css
//
// 1. Correct the inheritance of border color in Firefox
// 2. Add the correct box sizing in Firefox
#{$parent-selector} hr {
height: 0; // 2
margin: var(#{$css-var-prefix}typography-spacing-vertical) 0;
border: 0;
border-top: 1px solid var(#{$css-var-prefix}muted-border-color);
color: inherit; // 1
}
// Add the correct display in IE 10+
#{$parent-selector} [hidden],
#{$parent-selector} template {
@if $enable-important {
display: none !important;
} @else {
display: none;
}
}
// Add the correct display in IE 9-
#{$parent-selector} canvas {
display: inline-block;
}
}