36 lines
638 B
CSS
36 lines
638 B
CSS
.campaign-grid {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
gap: 0.75rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.campaign-icon,
|
|
.campaign-icon > i{
|
|
font-size: 24px !important;
|
|
padding: 0.25rem;
|
|
}
|
|
|
|
.campaign-icon:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.progress-grid {
|
|
display: grid;
|
|
grid-template-columns: auto repeat(3, max-content);
|
|
gap: 0.4rem;
|
|
}
|
|
|
|
.progress-row > *:nth-child(n+2) {
|
|
text-align: right;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.preorder-campaign-table-actions > a > i {
|
|
font-size: 17px !important;
|
|
}
|
|
|
|
.preorder-campaign-table-actions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
} |