Skip to content
This repository has been archived by the owner on May 29, 2022. It is now read-only.

Commit

Permalink
chore: clear layout for stripped version
Browse files Browse the repository at this point in the history
  • Loading branch information
sanket143 committed Sep 24, 2020
1 parent 9c8d88c commit 724f1bc
Show file tree
Hide file tree
Showing 4 changed files with 667 additions and 84 deletions.
2 changes: 1 addition & 1 deletion components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
.navbar {
height: 50px;
background: var(--bg-color);
border: 1px solid var(--border-color);
border-bottom: 0.1px solid var(--border-color);
@apply flex w-full;
}
Expand Down
4 changes: 2 additions & 2 deletions components/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default {
<style scoped>
.sidebar-wrapper {
background: var(--bg-color);
border: 1px solid var(--border-color);
border-right: 0.1px solid var(--border-color);
@apply p-3 h-full;
}
Expand All @@ -54,6 +54,6 @@ export default {
}
.item:hover {
background: #F1F1F1;
color: #DC143C;
}
</style>
5 changes: 2 additions & 3 deletions layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
:root {
--bg-color-opaque: #FFFFFF;
--bg-color: rgb(255, 255, 255);
--bg-color-trans: rgba(255, 255, 255, 0.98);
--border-color: #FFFFFF;
--bg-color-trans: rgba(255, 255, 255, 0.99);
--border-color: #EDEEEF;
}
html, body, #__nuxt, #__layout {
Expand Down Expand Up @@ -49,7 +49,6 @@ html, body, #__nuxt, #__layout {
.content {
background: var(--bg-color-trans);
border: 1px solid var(--border-color);
}
.link {
Expand Down
Loading

0 comments on commit 724f1bc

Please sign in to comment.