mirror of
https://github.com/picocss/pico.git
synced 2025-11-18 00:12:52 -05:00
16 lines
363 B
SCSS
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;
|
|
}
|
|
}
|