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: 3 additions & 2 deletions apps/site/components/withMetaBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ const WithMetaBar: FC = () => {
// Since we cannot show the same number of avatars in Mobile / Tablet
// resolution as we do on desktop and there is overflow, we are adjusting
// the number of avatars manually for the resolutions below
const isMobileResolution = useMediaQuery('(max-width: 670px)');
const isMobileResolution = useMediaQuery('(max-width: 890px)');

const isTabletResolution = useMediaQuery(
'(min-width: 670px) and (max-width: 1280px)'
'(min-width: 890px) and (max-width: 1280px)'
);

return (
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@node-core/ui-components",
"version": "1.5.9",
"version": "1.5.10",
"type": "module",
"exports": {
"./*": [
Expand Down
28 changes: 14 additions & 14 deletions packages/ui-components/src/Common/Select/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
focus:border-neutral-500
focus:ring-1
focus:ring-neutral-500
data-[placeholder]:text-neutral-800
data-placeholder:text-neutral-800
dark:border-neutral-800
dark:bg-neutral-950
dark:text-white
dark:focus:border-neutral-600
dark:focus:ring-neutral-600
dark:data-[placeholder]:text-neutral-200;
dark:data-placeholder:text-neutral-200;
}

.trigger span {
Expand Down Expand Up @@ -85,12 +85,12 @@

.text {
@apply text-neutral-800
data-[highlighted]:bg-green-500
data-[highlighted]:text-white
data-[highlighted]:outline-hidden
data-highlighted:bg-green-500
data-highlighted:text-white
data-highlighted:outline-hidden
dark:text-neutral-200
dark:data-[highlighted]:bg-green-600
dark:data-[highlighted]:text-white;
dark:data-highlighted:bg-green-600
dark:data-highlighted:text-white;
}

.text > span {
Expand Down Expand Up @@ -137,13 +137,13 @@

.text {
@apply text-neutral-900
data-[disabled]:text-neutral-600
data-[highlighted]:bg-neutral-100
data-[highlighted]:text-neutral-900
data-disabled:text-neutral-600
data-highlighted:bg-neutral-100
data-highlighted:text-neutral-900
dark:text-white
dark:data-[disabled]:text-neutral-700
dark:data-[highlighted]:bg-neutral-900
dark:data-[highlighted]:text-white;
dark:data-disabled:text-neutral-700
dark:data-highlighted:bg-neutral-900
dark:data-highlighted:text-white;
}

&.dropdown {
Expand Down Expand Up @@ -182,7 +182,7 @@
.dropdown {
@apply absolute
left-0
z-99
z-999
mt-4;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
ml:max-w-xs
ml:overflow-auto
ml:border-r
z-0
flex
w-full
flex-col
Expand Down
Loading