30 lines
606 B
CSS
30 lines
606 B
CSS
.delete-container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
.preview-card {
|
|
background: white;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
}
|
|
.attribute-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
.attribute-item {
|
|
padding: 0.75rem;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
.attribute-label {
|
|
font-weight: 600;
|
|
color: #6c757d;
|
|
}
|
|
.sticky-actions {
|
|
position: sticky;
|
|
bottom: 0;
|
|
background: white;
|
|
padding: 1rem 0;
|
|
border-top: 1px solid #dee2e6;
|
|
margin-top: 2rem;
|
|
} |