Commit e299f2cc authored by Chi Bui's avatar Chi Bui 👀

edit button download csv

parent 77c818ab
......@@ -11554,7 +11554,12 @@ body.toolbar-loading.toolbar {
.menu--category-menu.product.product-item .dropdown-menu {
display: none !important;
}
.button-export{
width : 100%;
display: flex;
justify-content: center;
margin-bottom: 50px;
}
.menu--category-menu.product.product-item .open-item .dropdown-menu {
display: flex !important;
margin-top: 3px;
......
......@@ -17,7 +17,7 @@
<h2>{{ 'Payment instructions'|t }}</h2>
<h4 style= "font-weight: 400">{{ 'You can view your order on your account page when logged in.'|t }} </h4>
<h3>Your order number is <span style="color: #e94337">{{ '@number.'|t({'@number': order_entity.getOrderNumber}) }}</span> </h3>
<h3>Mã đơn hàng của bạn là <span style="color: #e94337">{{ '@number.'|t({'@number': order_entity.getOrderNumber}) }}</span> </h3>
<h4 style= "font-weight: 400">{{ payment_instructions }}</h4>
<div class="continue-commerce">
<a href="/products" class="btn btn-primary">Tiếp tục mua hàng </a>
......
{#
/**
* @file
* Default theme implementation for an export icon.
*
* Available variables:
* - url: An internal system path of the data export.
* - attributes: Remaining HTML attributes for the export link.
* - format: The export format (csv, json, xml).
* - class: HTML classes to be applied to the export link.
*
* @ingroup themeable
*/
#}
<div class="button-export">
<div class="btn btn-primary">
<a style="color:white" href="{{ url }}">
Tải xuống
</a>
</div>
</div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment