Skip to content
Snippets Groups Projects

feat(background selector): added component to allow switch between backgrounds

Merged Tadeusz Miesiąc requested to merge feature/MIN-109-display-backgroud-images into development
3 unresolved threads
22 files
+ 6820
6494
Compare changes
  • Side-by-side
  • Inline
Files
22
@@ -31,12 +31,12 @@ export const MapNavigation = (): JSX.Element => {
};
return (
<div className="flex h-10 w-full flex-row flex-nowrap justify-start overflow-y-auto bg-white-pearl shadow-map-navigation-bar">
<div className="flex h-10 w-full flex-row flex-nowrap justify-start overflow-y-auto bg-white-pearl text-xs shadow-primary">
{openedMaps.map(map => (
<Button
key={map.modelId}
className={twMerge(
'h-10 whitespace-nowrap ',
'h-10 whitespace-nowrap',
isActive(map.modelId) ? 'bg-[#EBF4FF]' : 'font-normal',
)}
variantStyles={isActive(map.modelId) ? 'secondary' : 'ghost'}
Loading