Skip to content

Commit

Permalink
Config: #21 tailwind 속성/스타일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Seok93 committed Jun 20, 2024
1 parent 892c3ca commit 3b6a63c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
/* text color */
--text-color-default: #2c2c2c;
--text-color-emphasis: #5e5e5e;
--text-color-category: #b1b1b1;
--text-color-error: #be0000;
--text-color-blue: #0909e7;

Expand All @@ -69,6 +70,28 @@
font-family: var(--font-family-roboto);
font-size: var(--font-size-regular);
font-weight: var(--font-weight-regular);
color: var(--text-color-default);
font-style: normal;
}

/* ========= Scrollbar Custom ========= */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
border: 1px solid var(--border-scroll);
}
::-webkit-scrollbar-thumb {
background: var(--color-scroll);
}
::-webkit-scrollbar-thumb:hover {
cursor: pointer;
background: #e5e5e5;
}
}

@layer components {
.selected::before {
@apply absolute left-0 top-0 block h-30 w-4 bg-main content-[''];
}
}

0 comments on commit 3b6a63c

Please sign in to comment.