Skip to content

Commit 7bcbd37

Browse files
authored
Merge pull request #32 from tomciopp/slash-div
deprecation(Division): Migrate away from slash based division.
2 parents cb2077d + 1983f7c commit 7bcbd37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scss/_print-reset.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ h6 {
7373
color: $links-color;
7474
font-family: $headers-font-family;
7575
line-height: 1.2;
76-
margin-bottom: $spacing / 2;
76+
margin-bottom: $spacing * 0.5;
7777
margin-top: 0;
7878
}
7979

@@ -132,7 +132,7 @@ td {
132132

133133
td,
134134
th {
135-
padding: $base-font-size / 2 $base-font-size;
135+
padding: $base-font-size * 0.5 $base-font-size;
136136
page-break-inside: avoid
137137
}
138138

@@ -238,7 +238,7 @@ dt {
238238

239239
dd {
240240
margin: 0;
241-
margin-bottom: $spacing / 2;
241+
margin-bottom: $spacing * 0.5;
242242
}
243243

244244
abbr,

0 commit comments

Comments
 (0)