mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-12-11 18:41:12 -06:00
Migrated NoMenuLayout to tailwind
This commit is contained in:
parent
b19162ce91
commit
15ef29ecea
@ -1,9 +0,0 @@
|
|||||||
@use '../../node_modules/@shlinkio/shlink-frontend-kit/dist/base';
|
|
||||||
|
|
||||||
.no-menu-wrapper {
|
|
||||||
padding: 15px 0 0;
|
|
||||||
|
|
||||||
@media (min-width: base.$mdMin) {
|
|
||||||
padding: 30px 20px 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,11 +1,12 @@
|
|||||||
import { clsx } from 'clsx';
|
import { clsx } from 'clsx';
|
||||||
import type { FC, PropsWithChildren } from 'react';
|
import type { FC, PropsWithChildren } from 'react';
|
||||||
import './NoMenuLayout.scss';
|
|
||||||
|
|
||||||
export type NoMenuLayoutProps = PropsWithChildren & {
|
export type NoMenuLayoutProps = PropsWithChildren & {
|
||||||
className?: string;
|
className?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const NoMenuLayout: FC<NoMenuLayoutProps> = ({ children, className }) => (
|
export const NoMenuLayout: FC<NoMenuLayoutProps> = ({ children, className }) => (
|
||||||
<div className={clsx('no-menu-wrapper tw:container tw:mx-auto', className)}>{children}</div>
|
<div className={clsx('tw:container tw:mx-auto tw:p-5 tw:pt-8 tw:max-md:p-0 tw:max-md:py-4', className)}>
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user