@@ -75,12 +75,12 @@ class Pattern extends BasePattern {
75
75
76
76
// Container dimensions
77
77
const dimensions = {
78
- border_top_width : dom . get_css_value ( this . container_x , "border-top-width" , true ) , // prettier-ignore
79
- border_left_width : dom . get_css_value ( this . container_x , "border-left-width" , true ) , // prettier-ignore
80
- padding_top : dom . get_css_value ( this . container_x , "padding-top" , true ) , // prettier-ignore
81
- padding_right : dom . get_css_value ( this . container_x , "padding-right" , true ) , // prettier-ignore
82
- padding_bottom : dom . get_css_value ( this . container_x , "padding-bottom" , true ) , // prettier-ignore
83
- padding_left : dom . get_css_value ( this . container_x , "padding-left" , true ) , // prettier-ignore
78
+ border_top_width : dom . get_css_value ( container , "border-top-width" , true ) ,
79
+ border_left_width : dom . get_css_value ( container , "border-left-width" , true ) ,
80
+ padding_top : dom . get_css_value ( container , "padding-top" , true ) ,
81
+ padding_right : dom . get_css_value ( container , "padding-right" , true ) ,
82
+ padding_bottom : dom . get_css_value ( container , "padding-bottom" , true ) ,
83
+ padding_left : dom . get_css_value ( container , "padding-left" , true ) ,
84
84
} ;
85
85
86
86
const left =
0 commit comments