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
5 changes: 5 additions & 0 deletions .changeset/large-pandas-refuse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@node-core/ui-components': patch
---

Quality-of-life style improvements
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
z-50
mt-1
max-h-80
w-52
w-[26rem]
max-w-[calc(100vw-2rem)]
overflow-hidden
rounded-sm
border
Expand All @@ -45,7 +46,7 @@

.dropdownContentInner {
@apply max-h-80
w-52
w-full
overflow-y-auto;
}

Expand All @@ -64,7 +65,7 @@
&:hover,
&:focus-visible {
@apply bg-brand-600
text-white;
text-white!;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
.link {
@apply inline-block
text-sm
font-semibold
text-neutral-900
underline
hover:text-neutral-700
Expand All @@ -50,8 +49,7 @@
}

.codeLink {
@apply font-ibm-plex-mono
font-medium;
@apply font-ibm-plex-mono;
}

.depthThree {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
a {
@apply max-ml:inline-block
max-ml:py-1
font-semibold
text-neutral-900
underline
dark:text-white;
Expand All @@ -60,8 +59,7 @@
}

a.codeLink {
@apply font-ibm-plex-mono
font-medium;
@apply font-ibm-plex-mono;
}

ol {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
@apply ml:max-w-xs
ml:overflow-auto
ml:border-r
ml:pb-10
scrollbar-thin
z-0
flex
Expand Down
4 changes: 3 additions & 1 deletion packages/ui-components/src/styles/markdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ main {
h4,
h5,
h6 {
@apply font-semibold
@apply mt-4
font-semibold
text-neutral-900
first:mt-0
dark:text-white;

&[id] a {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/src/styles/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@theme {
--container-8xl: 88rem;
--container-9xl: 96rem;
--container-10xl: 104rem;
--container-10xl: 110rem;
Comment thread
avivkeller marked this conversation as resolved.
--container-11xl: 112rem;
--container-12xl: 120rem;
--breakpoint-ml: 896px;
Expand Down
Loading