From dad5bc56ae3cd53e968fea615e727726a9c7122d Mon Sep 17 00:00:00 2001 From: Ian Vexler Date: Fri, 22 Mar 2024 11:07:58 +0000 Subject: [PATCH] Minor styling changes to nav components --- dist/components/sideNavbar/SideNavbar.d.ts | 6 ++++++ dist/components/sideNavbar/SideNavbar.d.ts.map | 1 + dist/index.css | 3 ++- dist/index.es.css | 3 ++- dist/index.min.css | 3 ++- src/components/nav/Nav.scss | 3 ++- 6 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 dist/components/sideNavbar/SideNavbar.d.ts create mode 100644 dist/components/sideNavbar/SideNavbar.d.ts.map diff --git a/dist/components/sideNavbar/SideNavbar.d.ts b/dist/components/sideNavbar/SideNavbar.d.ts new file mode 100644 index 0000000..b04f900 --- /dev/null +++ b/dist/components/sideNavbar/SideNavbar.d.ts @@ -0,0 +1,6 @@ +import React from 'react'; +export interface SideNavbarProps extends React.HTMLProps { +} +declare const SideNavbar: ({ className, children, ...rest }: SideNavbarProps) => React.JSX.Element; +export default SideNavbar; +//# sourceMappingURL=SideNavbar.d.ts.map \ No newline at end of file diff --git a/dist/components/sideNavbar/SideNavbar.d.ts.map b/dist/components/sideNavbar/SideNavbar.d.ts.map new file mode 100644 index 0000000..89c5051 --- /dev/null +++ b/dist/components/sideNavbar/SideNavbar.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"SideNavbar.d.ts","sourceRoot":"","sources":["../../../src/components/sideNavbar/SideNavbar.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,WAAW,eAAgB,SAAQ,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC;CAAG;AAE3E,QAAA,MAAM,UAAU,qCAAsC,eAAe,sBAepE,CAAC;AAEF,eAAe,UAAU,CAAC"} \ No newline at end of file diff --git a/dist/index.css b/dist/index.css index aaf8149..3518e68 100644 --- a/dist/index.css +++ b/dist/index.css @@ -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; diff --git a/dist/index.es.css b/dist/index.es.css index aaf8149..3518e68 100644 --- a/dist/index.es.css +++ b/dist/index.es.css @@ -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; diff --git a/dist/index.min.css b/dist/index.min.css index aaf8149..3518e68 100644 --- a/dist/index.min.css +++ b/dist/index.min.css @@ -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; diff --git a/src/components/nav/Nav.scss b/src/components/nav/Nav.scss index 51db020..1891e75 100644 --- a/src/components/nav/Nav.scss +++ b/src/components/nav/Nav.scss @@ -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;