fix design bug category
Build and Deploy Docker Images / build_and_deploy (push) Has been cancelled

This commit is contained in:
hamid zarghami
2026-06-23 16:08:17 +03:30
parent 5f8812ce55
commit d592dd525e
3 changed files with 3 additions and 3 deletions
@@ -9,7 +9,7 @@ type Props = {
function CategoryItemRenderer({ children, ...rest }: Props) {
return (
<div className={glassSurface(rest.className, 'cursor-pointer transition-all duration-200 ease-out rounded-xl')}>
<div className={glassSurface(rest.className, 'cursor-pointer transition-[background-color,box-shadow,opacity] duration-200 ease-out rounded-xl outline-none [-webkit-tap-highlight-color:transparent]')}>
<div
{...rest}
className="rounded-normal w-[108px] h-[88px] flex flex-col justify-center items-center gap-2 overflow-hidden"
@@ -9,7 +9,7 @@ type Props = {
function CategorySmallItemRenderer({ children, ...rest }: Props) {
return (
<div className={glassSurface(rest.className, 'cursor-pointer transition-all duration-200 ease-out rounded-xl')}>
<div className={glassSurface(rest.className, 'cursor-pointer transition-[background-color,box-shadow,opacity] duration-200 ease-out rounded-xl outline-none [-webkit-tap-highlight-color:transparent]')}>
<div
{...rest}
className="rounded-normal h-[44px] flex flex-row justify-center items-center p-2.5 gap-2 overflow-hidden"
+1 -1
View File
@@ -36,7 +36,7 @@ html[data-theme="dark"] .glass-surface--selected {
.glass-surface--disabled {
position: relative;
background-color: rgba(255, 255, 255, 0.4) !important;
border: none;
border: 2px solid transparent;
box-shadow: none;
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);