diff --git a/src/components/NotePage/NoteDetail/NoteDetail.tsx b/src/components/NotePage/NoteDetail/NoteDetail.tsx
index a9ebb8c6db..5e1e010a70 100644
--- a/src/components/NotePage/NoteDetail/NoteDetail.tsx
+++ b/src/components/NotePage/NoteDetail/NoteDetail.tsx
@@ -25,17 +25,62 @@ import {
secondaryBackgroundColor,
textColor,
borderBottom,
- borderRight
+ borderRight,
+ uiTextColor,
+ contextMenuShadow,
+ PrimaryTextColor
} from '../../../lib/styled/styleFunctions'
import ToolbarExportButton from '../../atoms/ToolbarExportButton'
import { getFileList } from '../../../lib/dnd'
import { ViewModeType } from '../../../lib/generalStatus'
+import { BreadCrumbs } from '../NotePage'
+import cc from 'classcat'
export const StyledNoteDetailContainer = styled.div`
${secondaryBackgroundColor}
display: flex;
flex-direction: column;
height: 100%;
+ .breadCrumbs {
+ display: block;
+ width: 100%;
+ height: 30px;
+ font-size: 14px;
+ padding: 3px 2%;
+ ${borderBottom}
+ ${contextMenuShadow}
+ border-width: 2px !important;
+ overflow: hidden;
+
+ .wrapper {
+ display: block;
+ position: relative;
+ white-space: nowrap;
+ padding-bottom: 16px;
+ overflow-x: scroll;
+ width: 100%;
+ }
+
+ .separator {
+ ${uiTextColor}
+ display: inline-block;
+ }
+
+ .folderLink {
+ display: inline-block;
+ padding: 0 15px;
+ cursor: pointer;
+
+ &:first-of-type {
+ padding-left: 0;
+ }
+
+ &.active,
+ &:hover {
+ ${PrimaryTextColor}
+ }
+ }
+ }
.titleSection {
display: flex;
height: 50px;
@@ -113,6 +158,8 @@ type NoteDetailProps = {
viewMode: ViewModeType
toggleViewMode: (mode: ViewModeType) => void
addAttachments(storageId: string, files: File[]): Promise