File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
droplets/navigation/themes/default Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 124124 color : @white ;
125125 display : block ;
126126 padding : 11px 14px ;
127+ position : relative ;
127128 text-decoration : none ;
128129 width : 100% ;
130+ z-index : 1 ;
129131
130132 & :hover {
131133 background-color : fade (@black , 12% );
Original file line number Diff line number Diff line change 498498 return items ;
499499 } ,
500500 getPreTaxTotal ( ) {
501- const dollars = `${ options . currency . symbol } ${ methods . preTaxTotal } ` ;
501+ const dollars = `${ options . currency . symbol } ${ Number ( methods . preTaxTotal ) . toFixed ( 2 ) } ` ;
502502 const display = `${ dollars } ${ options . currency . type } ` ;
503503 $preTaxTotal . html ( display ) ;
504504 } ,
705705 </div>
706706 ${ error } ${ optError }
707707 <div class="drzSlideCheckout-cart-itemFooter">
708- <span class="drzSlideCheckout-cartItemTotal">Total: ${ options . currency . symbol } ${ itemTotal } </span>
708+ <span class="drzSlideCheckout-cartItemTotal">Total: ${ options . currency . symbol } ${ Number ( itemTotal ) . toFixed ( 2 ) } </span>
709709 </div>
710710 </div>
711711 </div>
You can’t perform that action at this time.
0 commit comments