You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
489 B
15 lines
489 B
<template>
|
|
<div class="element tw-flex tw-items-center">
|
|
<input class="tw-w-full tw-max-w-[200px]" type="text" placeholder="Enter your promo code" />
|
|
<button
|
|
class="tw-transition tw-block tw-btn-md tw-text-primary-1 tw-border tw-border-solid tw-border-primary-1 tw-px-[20px] tw-py-[10px] tw-ml-[20px] tw-rounded-xl hover:tw-bg-primary-3">
|
|
{{ $t("Apply") }}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|