pico/scss/inline/_strong.scss
2025-10-24 00:10:27 +02:00

16 lines
363 B
SCSS

/** SASS for the <strong> HTML element
*
* Found in scss/content/_typography.scss#16: `#{\$parent-selector} strong {`
*
* Add your styles here
*/
@use "sass:map";
@use "../settings" as *;
@if map.get($modules, "content/typography") {
// Add the correct font weight in Chrome, Edge, and Safari
#{$parent-selector} strong {
font-weight: bolder;
}
}