diff --git a/hotel-management/src/commons/styles/Direction.ts b/hotel-management/src/commons/styles/Direction.ts index c1a0661..60a3944 100644 --- a/hotel-management/src/commons/styles/Direction.ts +++ b/hotel-management/src/commons/styles/Direction.ts @@ -1,6 +1,8 @@ -import { TDirection } from '@type/common'; import styled, { css } from 'styled-components'; +// Types +import { TDirection } from '@type/common'; + interface IDirection { type?: TDirection; } diff --git a/hotel-management/src/components/RootLayout/styled.ts b/hotel-management/src/components/RootLayout/styled.ts index 159ab1c..7880d5a 100644 --- a/hotel-management/src/components/RootLayout/styled.ts +++ b/hotel-management/src/components/RootLayout/styled.ts @@ -2,7 +2,6 @@ import styled from 'styled-components'; const FullPageLayout = styled.div` height: 100vh; - background-color: var(--color-grey-50); display: flex; align-items: center; justify-content: center;