48 lines
739 B
CSS
48 lines
739 B
CSS
|
|
.emptyState {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 4rem 2rem;
|
||
|
|
text-align: center;
|
||
|
|
background: white;
|
||
|
|
border: 2px dashed #e5e7eb;
|
||
|
|
border-radius: 12px;
|
||
|
|
min-height: 400px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon {
|
||
|
|
color: #d1d5db;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title {
|
||
|
|
margin: 0 0 0.5rem 0;
|
||
|
|
font-size: 1.25rem;
|
||
|
|
font-weight: 600;
|
||
|
|
color: #1f2937;
|
||
|
|
}
|
||
|
|
|
||
|
|
.message {
|
||
|
|
margin: 0 0 1.5rem 0;
|
||
|
|
font-size: 1rem;
|
||
|
|
color: #6b7280;
|
||
|
|
max-width: 500px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button {
|
||
|
|
padding: 0.75rem 1.5rem;
|
||
|
|
font-size: 1rem;
|
||
|
|
font-weight: 500;
|
||
|
|
background: #3b82f6;
|
||
|
|
color: white;
|
||
|
|
border: none;
|
||
|
|
border-radius: 6px;
|
||
|
|
cursor: pointer;
|
||
|
|
transition: all 0.2s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
.button:hover {
|
||
|
|
background: #2563eb;
|
||
|
|
}
|