File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change
1
+ @use " sass:meta" ;
1
2
@use " variables" as * ;
2
3
@use " variables-dark" as * ;
3
4
@use " maps" as * ;
46
47
47
48
// Fonts
48
49
49
- // Note: Use `inspect` for lists so that quoted items keep the quotes.
50
+ // Note: Use `meta. inspect` for lists so that quoted items keep the quotes.
50
51
// See https://github.com/sass/sass/issues/2383#issuecomment-336349172
51
- -- #{$prefix } font- sans- serif: #{inspect ($font-family-sans-serif )} ;
52
- -- #{$prefix } font- monospace: #{inspect ($font-family-monospace )} ;
52
+ -- #{$prefix } font- sans- serif: #{meta . inspect ($font-family-sans-serif )} ;
53
+ -- #{$prefix } font- monospace: #{meta . inspect ($font-family-monospace )} ;
53
54
-- #{$prefix } gradient: #{$gradient } ;
54
55
55
56
// Root and body
56
57
// scss-docs-start root-body-variables
57
58
@if $font-size-root != null {
58
59
-- #{$prefix } root-font-size : #{$font-size-root } ;
59
60
}
60
- -- #{$prefix } body- font- family: #{inspect ($font-family-base )} ;
61
+ -- #{$prefix } body- font- family: #{meta . inspect ($font-family-base )} ;
61
62
@include rfs ($font-size-base , -- #{$prefix } body- font- size);
62
63
-- #{$prefix } body- font- weight: #{$font-weight-base } ;
63
64
-- #{$prefix } body- line- height: #{$line-height-base } ;
Original file line number Diff line number Diff line change 1
1
@use " sass:map" ;
2
+ @use " sass:meta" ;
2
3
@use " ../variables" as * ;
3
4
@use " ../maps" as * ;
4
5
@use " ../functions/math" as * ;
22
23
23
24
@mixin make-col-ready ($include-column-box-sizing : false) {
24
25
// Add box sizing if only the grid is loaded
25
- box-sizing : if (variable-exists (include-column-box-sizing ) and $include-column-box-sizing , border-box , null );
26
+ box-sizing : if (meta . variable-exists (include-column-box-sizing ) and $include-column-box-sizing , border-box , null );
26
27
// Prevent columns from becoming too narrow when at smaller grid tiers by
27
28
// always setting `width: 100%;`. This works because we set the width
28
29
// later on to override this initial width.
You can’t perform that action at this time.
0 commit comments