Skip to content

Commit

Permalink
Minor styling changes to nav components
Browse files Browse the repository at this point in the history
  • Loading branch information
ianvexler committed Mar 22, 2024
1 parent 4c4cfa1 commit dad5bc5
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
6 changes: 6 additions & 0 deletions dist/components/sideNavbar/SideNavbar.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
export interface SideNavbarProps extends React.HTMLProps<HTMLDivElement> {
}
declare const SideNavbar: ({ className, children, ...rest }: SideNavbarProps) => React.JSX.Element;
export default SideNavbar;
//# sourceMappingURL=SideNavbar.d.ts.map
1 change: 1 addition & 0 deletions dist/components/sideNavbar/SideNavbar.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dist/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -13386,11 +13386,12 @@ textarea.form-control-lg {
width: 0;
transition: width 300ms ease;
transition: margin-left 300ms ease;
text-wrap: nowrap;
white-space: nowrap;
}
.nav-item-text.opened {
transition: opacity 320ms ease;
text-wrap: unset;
white-space: unset;
margin-left: 18px;
opacity: 1;
width: auto;
Expand Down
3 changes: 2 additions & 1 deletion dist/index.es.css
Original file line number Diff line number Diff line change
Expand Up @@ -13386,11 +13386,12 @@ textarea.form-control-lg {
width: 0;
transition: width 300ms ease;
transition: margin-left 300ms ease;
text-wrap: nowrap;
white-space: nowrap;
}
.nav-item-text.opened {
transition: opacity 320ms ease;
text-wrap: unset;
white-space: unset;
margin-left: 18px;
opacity: 1;
width: auto;
Expand Down
3 changes: 2 additions & 1 deletion dist/index.min.css
Original file line number Diff line number Diff line change
Expand Up @@ -13386,11 +13386,12 @@ textarea.form-control-lg {
width: 0;
transition: width 300ms ease;
transition: margin-left 300ms ease;
text-wrap: nowrap;
white-space: nowrap;
}
.nav-item-text.opened {
transition: opacity 320ms ease;
text-wrap: unset;
white-space: unset;
margin-left: 18px;
opacity: 1;
width: auto;
Expand Down
3 changes: 2 additions & 1 deletion src/components/nav/Nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,12 @@

transition: width 300ms ease;
transition: margin-left 300ms ease;
text-wrap: nowrap;
white-space: nowrap;

&.opened {
transition: opacity 320ms ease;
text-wrap: unset;
white-space: unset;

margin-left: 18px;
opacity: 1;
Expand Down

0 comments on commit dad5bc5

Please sign in to comment.