Skip to content

Commit

Permalink
fix errant root: declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
rstijerina committed May 21, 2024
1 parent 3edc1ca commit 91d6375
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions client/modules/workspace/src/AppsSideNav/AppsSideNav.module.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
:root {
--vertical-buffer: 10px;
--max-item-count: 5;
--item-height: 35px; /* (~30px design * 1.2 design-to-app ratio) */
/* i.e. ( items * item height ) + ( top space & bottom space ) */
--height: calc(
(var(--max-item-count) * var(--item-height)) + (var(--vertical-buffer) * 2)
);
display: inline-grid;
grid-auto-flow: column;
grid-template-rows: repeat(var(--max-item-count), min-content);
height: var(--height);
padding-top: var(--vertical-buffer);
padding-bottom: var(--vertical-buffer);
--min-width: 200px;
margin-left: calc(var(--horizontal-buffer) * -1);
border-right: 1px solid rgb(112 112 112 / 25%);
}

a.navLink > div {
height: 50;
line-height: 100%;
Expand Down

0 comments on commit 91d6375

Please sign in to comment.