29 lines
727 B
CSS
29 lines
727 B
CSS
@import './paginator';
|
|
|
|
.p-dataview {
|
|
@apply border-none
|
|
}
|
|
|
|
.p-dataview-header {
|
|
@apply py-3 px-4 border-b border-surface-200 dark:border-surface-700
|
|
bg-surface-0 dark:bg-surface-900
|
|
text-surface-700 dark:text-surface-0
|
|
}
|
|
|
|
.p-dataview-content {
|
|
@apply bg-surface-0 dark:bg-surface-900 text-surface-700 dark:text-surface-0
|
|
}
|
|
|
|
.p-dataview-footer {
|
|
@apply py-3 px-4 border-t border-surface-200 dark:border-surface-700
|
|
bg-surface-0 dark:bg-surface-900
|
|
text-surface-700 dark:text-surface-0
|
|
}
|
|
|
|
.p-dataview-paginator-top {
|
|
@apply border-b border-surface-200 dark:border-surface-700
|
|
}
|
|
|
|
.p-dataview-paginator-bottom {
|
|
@apply border-t border-surface-200 dark:border-surface-700
|
|
} |