We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8866260 commit 0d415ffCopy full SHA for 0d415ff
src/client/App/_common/Sidebar/Sidebar.hbs
@@ -1 +1,3 @@
1
-This Is Sidebar
+<aside class="Sidebar">
2
+ This Is Sidebar
3
+</aside>
src/client/App/_common/Sidebar/Sidebar.scss
@@ -0,0 +1,9 @@
+.Sidebar {
+ position: absolute;
+ width: 100%;
4
+ height: 100%;
5
+ left: 0;
6
+ top: 0;
7
+ background-color: #fff;
8
+ box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
9
+}
src/client/App/_common/Sidebar/index.js
@@ -0,0 +1 @@
+import './Sidebar.scss';
src/client/App/_common/index.js
@@ -0,0 +1,4 @@
+import './Sidebar';
+
+export default {};
src/client/App/index.js
@@ -1,4 +1,6 @@
import './App.scss';
import App from './App';
+import Common from './_common';
export default App;
0 commit comments