Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
.item {
@apply flex
items-center
gap-5
text-sm
font-medium;
max-w-fit
items-center
gap-5
truncate
text-sm
font-medium;

&:last-child {
@apply w-full;
}

a {
@apply flex-shrink
Expand All @@ -23,6 +29,7 @@

.separator {
@apply size-4
max-w-fit
flex-shrink-0
flex-grow
text-neutral-600
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
.link {
@apply max-w-fit
truncate;

&.active {
@apply rounded
bg-green-600
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.list {
@apply flex
items-center
gap-5;
w-full
gap-5
px-6;
}