mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
chore: checkpoint current work
This commit is contained in:
@@ -256,7 +256,7 @@ const CatalogModernViewInner: FC<{}> = () =>
|
||||
{ /* Content area */ }
|
||||
<div className="flex flex-1 overflow-hidden">
|
||||
{ showFavorites
|
||||
? <div className="flex-1 overflow-auto bg-card-content-area">
|
||||
? <div className="flex-1 overflow-auto nitro-card-content-shell">
|
||||
<CatalogFavoritesView onClose={ () => setShowFavorites(false) } />
|
||||
</div>
|
||||
: <>
|
||||
@@ -264,7 +264,7 @@ const CatalogModernViewInner: FC<{}> = () =>
|
||||
<div className="w-[170px] min-w-[170px] border-r-2 border-card-grid-item-border bg-card-grid-item overflow-y-auto py-1">
|
||||
<CatalogNavigationView node={ activeNodes[0] } />
|
||||
</div> }
|
||||
<div className="flex-1 overflow-auto p-2 bg-card-content-area">
|
||||
<div className="flex-1 overflow-auto p-2 nitro-card-content-shell">
|
||||
{ adminMode && <CatalogAdminPageEditView /> }
|
||||
{ GetCatalogLayout(currentPage, () => setNavigationHidden(true)) }
|
||||
</div>
|
||||
|
||||
@@ -110,9 +110,9 @@ export const CatalogAdminOfferEditView: FC<{}> = () =>
|
||||
<div className="fixed inset-0 flex items-center justify-center" style={ { zIndex: 1000 } } onClick={ () => setEditingOffer(null) }>
|
||||
<div className="absolute inset-0 bg-black/30 backdrop-blur-[1px]" />
|
||||
|
||||
<div className="relative bg-light rounded-lg w-[420px] border-2 border-card-border overflow-hidden shadow-lg" onClick={ e => e.stopPropagation() }>
|
||||
<div className="nitro-card-shell relative w-[420px] overflow-hidden shadow-lg" onClick={ e => e.stopPropagation() }>
|
||||
{ /* Header */ }
|
||||
<div className="flex items-center justify-between px-3 py-2 bg-card-header">
|
||||
<div className="nitro-card-header-shell flex items-center justify-between px-3 py-2">
|
||||
<span className="text-sm font-bold text-white">
|
||||
{ isNew ? LocalizeText('catalog.admin.offer.new') : `${ LocalizeText('catalog.admin.offer.edit') } #${ editingOffer.offerId }` }
|
||||
</span>
|
||||
|
||||
Reference in New Issue
Block a user