Skip to content

Commit

Permalink
FCM: Unquote padding-bottom value in video-playing class
Browse files Browse the repository at this point in the history
  • Loading branch information
anselmbradford committed Aug 21, 2024
1 parent ea5b6d8 commit 0972a29
Show file tree
Hide file tree
Showing 16 changed files with 22 additions and 21 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cfpb-design-system/dist/index.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/cfpb-design-system/dist/index.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cfpb-design-system/dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cfpb-design-system/dist/utilities/index.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/cfpb-design-system/dist/utilities/index.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/cfpb-design-system/dist/utilities/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion packages/cfpb-design-system/src/utilities/utilities.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@use 'sass:math';
@use 'sass:string';
@use '../abstracts' as *;

/* ==========================================================================
Expand Down Expand Up @@ -150,7 +151,7 @@
$ratio: math.div($height, $width) * 100;

position: relative;
padding-bottom: '#{$ratio}%';
padding-bottom: string.unquote('#{$ratio}%');
height: 0;
}

Expand Down

0 comments on commit 0972a29

Please sign in to comment.