Skip to content

Commit 366b0ee

Browse files
authored
Merge pull request #22 from Fs00/patch-1
Fix Dart Sass deprecation warnings for division
2 parents 044dc0b + 9440c99 commit 366b0ee

2 files changed

Lines changed: 22 additions & 22 deletions

File tree

app/assets/stylesheets/activeadmin_blaze_theme/blaze/mixins/_settings.global.scss

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,27 @@ $spacing-tiny: .125em !default;
3535
//
3636
$grid-gutter: 1em !default;
3737
$grid-widths: (
38-
5: 5 / 100,
39-
10: 1 / 10,
40-
15: 15 / 100,
41-
20: 1 / 5,
42-
25: 1 / 4,
43-
30: 3 / 10,
44-
33: 1 / 3,
45-
35: 35 / 100,
46-
40: 2 / 5,
47-
45: 45 / 100,
48-
50: 1 / 2,
49-
55: 55 / 100,
50-
60: 3 / 5,
51-
65: 65 / 100,
52-
66: 2 / 3,
53-
70: 7 / 10,
54-
75: 3 / 4,
55-
80: 4 / 5,
56-
85: 85 / 100,
57-
90: 9 / 10,
58-
95: 95 / 100,
38+
5: 0.05,
39+
10: 0.1,
40+
15: 0.15,
41+
20: 0.2,
42+
25: 0.25,
43+
30: 0.3,
44+
33: 0.333333,
45+
35: 0.35,
46+
40: 0.4,
47+
45: 0.45,
48+
50: 0.5,
49+
55: 0.55,
50+
60: 0.6,
51+
65: 0.65,
52+
66: 0.666667,
53+
70: 0.7,
54+
75: 0.75,
55+
80: 0.8,
56+
85: 0.85,
57+
90: 0.9,
58+
95: 0.95,
5959
100: 1
6060
);
6161

app/assets/stylesheets/activeadmin_blaze_theme/blaze/objects.drawers.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
left: 0;
3131
width: $drawer-width-horizontal;
3232
height: auto;
33-
margin-left: (100% - $drawer-width-horizontal) / 2;
33+
margin-left: (100% - $drawer-width-horizontal) * 0.5;
3434
transform: translate(0, 0);
3535
}
3636

0 commit comments

Comments
 (0)