everything semi working before sample implementation
This commit is contained in:
@@ -50,10 +50,8 @@
|
||||
}
|
||||
|
||||
.table-container {
|
||||
background: white;
|
||||
border-radius: 8px;
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
table {
|
||||
@@ -114,10 +112,7 @@
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
background-color: var(--bg-secondary);
|
||||
border-radius: 8px;
|
||||
padding: var(--spacing-xl);
|
||||
text-align: center;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.empty-state p {
|
||||
@@ -184,7 +179,7 @@
|
||||
<h2>Standard Orders</h2>
|
||||
|
||||
@if ($standardOrders->count() > 0)
|
||||
<div class="table-container">
|
||||
<div class="table-container card">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
@@ -215,7 +210,7 @@
|
||||
</table>
|
||||
</div>
|
||||
@else
|
||||
<div class="empty-state">
|
||||
<div class="empty-state card--pink">
|
||||
<p>You haven't placed any standard orders yet.</p>
|
||||
<a href="{{ route('wallpapers') }}">Browse Products</a>
|
||||
</div>
|
||||
@@ -230,7 +225,7 @@
|
||||
</div>
|
||||
|
||||
@if ($customOrders->count() > 0)
|
||||
<div class="table-container">
|
||||
<div class="table-container card">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
@@ -267,7 +262,7 @@
|
||||
</table>
|
||||
</div>
|
||||
@else
|
||||
<div class="empty-state">
|
||||
<div class="empty-state card--pink">
|
||||
<p>You haven't created any custom orders yet.</p>
|
||||
<a href="{{ route('custom-orders.create') }}">Create Custom Order</a>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user