Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Jontes-Tech committed Jan 26, 2025
1 parent 39c996c commit 4dbba71
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion web/src/components/media/MediaPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export const MediaPreview: FC<{
return (
<div
className={clsx(
'relative aspect-video h-fit w-full max-w-md rounded-md bg-neutral-100',
'bg-background relative aspect-video h-fit w-full max-w-md rounded-md',
status == 'new-media' &&
isPending &&
'border-2 border-blue-400',
Expand Down
4 changes: 2 additions & 2 deletions web/src/components/navigation/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export const Navbar = () => {
<Dropdown.Item asChild>
<Link
to={login_here_url}
className="flex items-center justify-center py-2 hover:bg-black/5"
className="Text flex items-center justify-center py-2 hover:bg-black/5"
>
<FiLogIn />
<span className="text-sm">
Expand Down Expand Up @@ -239,7 +239,7 @@ export const Navbar = () => {
{(!token || (token && !meData)) && (
<a
href={login_here_url}
className="flex h-full items-center border-t px-2 py-0.5 hover:bg-black/10 md:border-l"
className="Text flex h-full items-center border-t px-2 py-0.5 hover:bg-black/10 md:border-l"
data-testid="login-button"
>
Login
Expand Down
2 changes: 1 addition & 1 deletion web/src/gui/select/FormSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const FieldSelect: FC<FieldSelectProperties> = ({
setSearch(search);
}}
/>
<Command.List>
<Command.List className='Text'>
{rowVirtualizer.getVirtualItems().length ===
0 && (
<Command.Empty>
Expand Down
8 changes: 4 additions & 4 deletions web/src/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ a {
border-radius: 6px;
padding: 20px;
width: 300px;
background-color: white;
background-color: hsl(var(--background-secondary));
box-shadow: hsl(206 22% 7% / 35%) 0px 10px 38px -10px,
hsl(206 22% 7% / 20%) 0px 10px 20px -15px;
animation-duration: 400ms;
Expand Down Expand Up @@ -214,8 +214,8 @@ a {
outline: none;
}
.DropdownMenuSubTrigger[data-state='open'] {
background-color: #e4e2ee;
color: #53526a;
background-color: hsl(var(--background-secondary));
color: hsl(var(--foreground));
}
.DropdownMenuItem[data-disabled],
.DropdownMenuCheckboxItem[data-disabled],
Expand Down Expand Up @@ -266,7 +266,7 @@ a {
display: inline-flex;
align-items: center;
justify-content: center;
color: #53526a;
color: hsl(var(--foreground));
background-color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
Expand Down

0 comments on commit 4dbba71

Please sign in to comment.