1+ @use " sass:math" ;
12//
23// Typography
34// --------------------------------------------------
@@ -25,7 +26,7 @@ h1, .h1,
2526h2 , .h2 ,
2627h3 , .h3 {
2728 margin-top : $line-height-computed ;
28- margin-bottom : ($line-height-computed / 2 );
29+ margin-bottom : math . div ($line-height-computed , 2 );
2930
3031 small ,
3132 .small {
@@ -35,8 +36,8 @@ h3, .h3 {
3536h4 , .h4 ,
3637h5 , .h5 ,
3738h6 , .h6 {
38- margin-top : ($line-height-computed / 2 );
39- margin-bottom : ($line-height-computed / 2 );
39+ margin-top : math . div ($line-height-computed , 2 );
40+ margin-bottom : math . div ($line-height-computed , 2 );
4041
4142 small ,
4243 .small {
@@ -56,7 +57,7 @@ h6, .h6 { font-size: $font-size-h6; }
5657// -------------------------
5758
5859p {
59- margin : 0 0 ($line-height-computed / 2 );
60+ margin : 0 0 math . div ($line-height-computed , 2 );
6061}
6162
6263.lead {
7475// Emphasis & misc
7576// -------------------------
7677
77- // Ex: (12px small font / 14px base font) * 100% = about 85%
78+ // Ex: math.div (12px small font, 14px base font) * 100% = about 85%
7879small ,
7980.small {
80- font-size : floor ((100% * $font-size-small / $font-size-base ));
81+ font-size : floor (math . div (100% * $font-size-small , $font-size-base ));
8182}
8283
8384mark ,
@@ -136,7 +137,7 @@ mark,
136137// -------------------------
137138
138139.page-header {
139- padding-bottom : (($line-height-computed / 2 ) - 1 );
140+ padding-bottom : (math . div ($line-height-computed , 2 ) - 1 );
140141 margin : ($line-height-computed * 2 ) 0 $line-height-computed ;
141142 border-bottom : 1px solid $page-header-border-color ;
142143}
@@ -149,7 +150,7 @@ mark,
149150ul ,
150151ol {
151152 margin-top : 0 ;
152- margin-bottom : ($line-height-computed / 2 );
153+ margin-bottom : math . div ($line-height-computed , 2 );
153154 ul ,
154155 ol {
155156 margin-bottom : 0 ;
@@ -239,7 +240,7 @@ abbr[data-original-title] {
239240
240241// Blockquotes
241242blockquote {
242- padding : ($line-height-computed / 2 ) $line-height-computed ;
243+ padding : math . div ($line-height-computed , 2 ) $line-height-computed ;
243244 margin : 0 0 $line-height-computed ;
244245 font-size : $blockquote-font-size ;
245246 border-left : 5px solid $blockquote-border-color ;
0 commit comments