diff --git a/app/webpacker/css/admin_v3/all.scss b/app/webpacker/css/admin_v3/all.scss index 6e00cfe2fb..f35e631585 100644 --- a/app/webpacker/css/admin_v3/all.scss +++ b/app/webpacker/css/admin_v3/all.scss @@ -65,7 +65,7 @@ @import "../admin/components/product_autocomplete"; @import "../admin/components/progress"; @import "../admin/components/save_bar"; -@import "../admin/components/sidebar"; +@import "components/sidebar"; // admin_v3 @import "../admin/components/simple_modal"; @import "../admin/components/states"; @import "../admin/components/stripe_connect_button"; diff --git a/app/webpacker/css/admin_v3/components/sidebar.scss b/app/webpacker/css/admin_v3/components/sidebar.scss new file mode 100644 index 0000000000..960de96ab0 --- /dev/null +++ b/app/webpacker/css/admin_v3/components/sidebar.scss @@ -0,0 +1,26 @@ +// Sidebar +//--------------------------------------------------- +#sidebar { + overflow: visible; + border-top: 1px solid $color-border; + margin-top: 17px; + + .sidebar-title { + color: $color-2; + text-transform: uppercase; + text-align: center; + font-size: 14px; + font-weight: 600; + + > span { + display: inline; + background: #fff; + padding: 5px 10px; + position: relative; + top: -14px; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + } +}