Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
williamsjokvist committed Dec 30, 2024
1 parent 279d15e commit 9e50fbd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion gui/src/main/app-titlebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function AppTitleBar() {
return (
<div style={{ '--draggable': 'drag' } as React.CSSProperties}>
<div className='flex justify-start'>
<div className='group group mb-3 ml-2 mt-2 flex'>
<div className='group mb-3 ml-2 mt-2 flex'>
<button
aria-label='close'
className='mr-[8px] flex h-[14px] w-[14px] items-center justify-center rounded-full bg-slate-600 p-[2px] transition-all group-hover:bg-red-500'
Expand Down
2 changes: 1 addition & 1 deletion gui/src/pages/matches.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function MatchesListPage() {
</Page.Header>

<div className='relative w-full'>
<div className='mb-2 flex h-10 items-center justify-between border-b border-slate-50 border-opacity-10 px-8 pt-1 '>
<div className='mb-2 flex h-10 items-center justify-between border-b border-slate-50 border-opacity-10 px-8 pt-1'>
<Button
className='flex items-center gap-1 px-1 py-[2px]'
style={{ filter: 'hue-rotate(-65deg)' }}
Expand Down
2 changes: 1 addition & 1 deletion gui/src/pages/output.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ function ThemeSelect(props: { value: string; onSelect: (theme: string) => void }
/>
<label
htmlFor={`${theme.name}-checkbox`}
className='font-spartan w-full cursor-pointer py-1 pl-14 capitalize'
className='font-spartan w-full cursor-pointer py-1 pl-14 capitalize'
>
{theme.name}
</label>
Expand Down
12 changes: 6 additions & 6 deletions gui/src/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ export function Button(props: JSX.IntrinsicElements['button']) {
onClick={disabled ? undefined : onClick}
{...(disabled
? {
style: {
backgroundColor: 'rgba(0,0,0,.25)',
border: '1px solid rgba(255,255,255,.25)',
cursor: 'not-allowed',
...style
style: {
backgroundColor: 'rgba(0,0,0,.25)',
border: '1px solid rgba(255,255,255,.25)',
cursor: 'not-allowed',
...style
}
}
}
: { style })}
className={cn(
'flex items-center justify-between',
Expand Down
2 changes: 1 addition & 1 deletion gui/src/ui/enth-eye/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function EnthEye(props: React.ImgHTMLAttributes<HTMLImageElement>) {
<span
className={cn(
'relative inline-block',
'rounded-full ',
'rounded-full',
'w-[624px] origin-[bottom_left] -rotate-90'
)}
style={{
Expand Down

0 comments on commit 9e50fbd

Please sign in to comment.