Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/lib/holocene/api-pagination.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@

<style lang="postcss">
.arrow {
@apply absolute left-0 top-0 h-0 w-0;
@apply h-0 w-0;

border-style: solid;
border-width: 6px 12px 6px 0;
Expand All @@ -374,10 +374,10 @@
}

.caret {
@apply relative;
@apply inline-flex items-center justify-center;

width: 12px;
height: 12px;
width: 24px;
height: 24px;
}

.caret:disabled {
Expand Down
8 changes: 4 additions & 4 deletions src/lib/holocene/pagination.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -257,18 +257,18 @@

<style lang="postcss">
.caret {
@apply relative;
@apply inline-flex items-center justify-center;

width: 12px;
height: 12px;
width: 24px;
height: 24px;
}

.caret:disabled {
@apply cursor-not-allowed opacity-50;
}

.arrow {
@apply absolute left-0 top-0 h-0 w-0;
@apply h-0 w-0;

border-style: solid;
border-width: 6px 12px 6px 0;
Expand Down
Loading