Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: header height fix plus caret #26

Merged
merged 5 commits into from
Oct 22, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions src/components/Common/caret.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
.lil-caret {
@apply lil-h-3 lil-w-3;
@apply lil-h-2 lil-w-2 lil-border-xl lil-border-transparent lil-items-center;
}

.lil-caret-up {
.lil-caret-down {
border-right:none;
border-bottom: none;
border-right: none;
@apply lil-border-t-md lil-border-l-md lil-border-grey-450 lil-border-solid lil-rotate-45;
@apply lil-border-t-md lil-border-l-md lil-border-font-500 lil-transform lil-rotate-45;
}

.lil-caret-down {
.lil-caret-up {
border-top: none;
border-left: none;
@apply lil-border-b-md lil-border-r-md lil-border-grey-450 lil-border-solid lil-rotate-45;
@apply lil-border-b-md lil-border-r-md lil-border-font-500 lil-transform lil-rotate-45;
}

2 changes: 1 addition & 1 deletion src/components/SideNav/sidenav.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.lil-sidenav {
transform: translateX(-100%);
transition: all 0.5s ease 0s;
height: 120vh;
height: 100vh;
@apply lil-z-20 lil-fixed lil-bg-white lil-overflow-x-hidden lil-w-screen lil-left-0;
}

Expand Down
1 change: 1 addition & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@
@import "./components/Input/inputAction.css";
@import "./components/Common/common.css";
@import "./components/Common/navbar.css";
@import "./components/Common/caret.css";
@import "./components/SideNav/sidenav.css";