Skip to content

Commit

Permalink
🎨 Run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
BerkeAras committed Feb 16, 2022
1 parent ff62229 commit ee2f76f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
@media (max-width: 768px) {
overflow-y: none;
overflow-x: auto;
white-space: nowrap;
white-space: nowrap;

div.checkbox {
float: none;
Expand Down
14 changes: 10 additions & 4 deletions src/components/KnowledgeBase/KnowledgeBaseSidebar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,16 @@ function KnowledgeBaseSidebar(props) {
</div>
) : (
<>
<a href="#" onClick={(e) => {
e.preventDefault();
setSidebarOpen(!sidebarOpen)
}} className="KnowledgeBaseSidebar-mobile-button"><ChevronRight /></a>
<a
href="#"
onClick={(e) => {
e.preventDefault()
setSidebarOpen(!sidebarOpen)
}}
className="KnowledgeBaseSidebar-mobile-button"
>
<ChevronRight />
</a>
<NavLink
end
onClick={() => setSidebarOpen(false)}
Expand Down
4 changes: 2 additions & 2 deletions src/components/KnowledgeBase/KnowledgeBaseSidebar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
padding: 65px 10px 10px;
overflow: auto;
z-index: 1;
transition: all .2s;
transition: all 0.2s;

hr {
height: 1px;
Expand Down Expand Up @@ -73,7 +73,7 @@
svg {
margin: 8px;
transform: none;
transition: all .2s;
transition: all 0.2s;
}

&:hover {
Expand Down
2 changes: 1 addition & 1 deletion src/scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@import 'variables.scss';
* {
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: transparent;
}

Expand Down

0 comments on commit ee2f76f

Please sign in to comment.