diff options
| author | Kumar Priyansh <[email protected]> | 2019-05-31 18:50:47 +0700 |
|---|---|---|
| committer | Kumar Priyansh <[email protected]> | 2019-05-31 18:50:47 +0700 |
| commit | 61b4ec96d8e2e321354f60d7459f910416cda4ce (patch) | |
| tree | c17751022bb778bf368ccf34565db4c68f9137e5 | |
| parent | 27760f1655b7fa1d2413bee75d26b4a95f20c3e4 (diff) | |
| download | firebase-ecommerce-61b4ec96d8e2e321354f60d7459f910416cda4ce.tar.xz firebase-ecommerce-61b4ec96d8e2e321354f60d7459f910416cda4ce.zip | |
Updated Dashboard Product list Styling]
| -rw-r--r-- | dashboard/index.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dashboard/index.html b/dashboard/index.html index c16dcd0..2c92305 100644 --- a/dashboard/index.html +++ b/dashboard/index.html @@ -50,11 +50,39 @@ align-content: center; align-items: center; } + #signout { + position: absolute; + top: 25px; + right: 25px; + } + #cart { + position: absolute; + top: 25px; + right: 105px; + } + .singleProduct { + width: 250px; + border: solid 1px #333; + padding: 20px; + border-radius: 5px; + margin: 10px; + display: inline-block; + } + .productImage { + width: 210px; + height: 210px; + background-repeat: no-repeat; + background-size: cover; + background-position: center; + } </style> </head> <body> <div id="snackbar">Some text some message..</div> + <h2 class="title">Firebase ECommerce</h2> + <button id="cart">View Cart</button> <button id="signout">Signout</button> + <div id="loader"></div> <script src="../shared/jquery.js"></script> <script src="https://www.gstatic.com/firebasejs/6.1.0/firebase.js"></script> <script src="../shared/firebaseConfig.js"></script> |
