PHP Classes

File: resources/assets/js/views/Confirmation.vue

Recommend this page to a friend!
  Classes of Hillary Kollan   Laravel eCommerce with Vue.js   resources/assets/js/views/Confirmation.vue   Download  
File: resources/assets/js/views/Confirmation.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel eCommerce with Vue.js
Implementation of an interactive eCommerce site
Author: By
Last change:
Date: 2 years ago
Size: 891 bytes
 

Contents

Class file image Download
<template> <div> <div class="container-fluid hero-section d-flex align-content-center justify-content-center flex-wrap ml-auto"> <h2> <span class="title"><strong>Thank You!</strong></span><br> <span class="medium-text">Your order has been placed.</span><br> <router-link :to="{name: 'userboard'}" class="small-link"> See your orders </router-link> </h2> </div> </div> </template> <script> export default {} </script> <style scoped> .medium-text { font-size: 36px; } .small-link { font-size: 24px; text-decoration: underline; color: #777; } .product-box { border: 1px solid #cccccc; padding: 10px 15px; } .hero-section { height: 80vh; align-items: center; margin-top: -20px; margin-bottom: 20px; } .title { font-size: 60px; } </style>