Explorar el Código

125587 fix margin

soumaeda hace 2 años
padre
commit
3b1d9d74cf

+ 1 - 1
apps/app/src/components/PageList/PageListItemS.tsx

@@ -25,8 +25,8 @@ export const PageListItemS = (props: PageListItemSProps): JSX.Element => {
   } = props;
 
   const path = pageTitle != null ? pageTitle : page.path;
-  let pagePathElement = <PagePathLabel path={path} additionalClassNames={['mx-1']} />;
 
+  let pagePathElement = <PagePathLabel path={path} additionalClassNames={['mx-1']} />;
   if (!noLink) {
     pagePathElement = <a className="text-break" href={page.path}>{pagePathElement}</a>;
   }

+ 0 - 1
packages/ui/src/styles/molecules/_page_list.scss

@@ -98,5 +98,4 @@
     overflow: hidden;
     line-height: 1.2;
   }
-
 }