diff --git a/app/assets/stylesheets/navbar.css b/app/assets/stylesheets/navbar.css
index b378a527..ca5d68ba 100644
--- a/app/assets/stylesheets/navbar.css
+++ b/app/assets/stylesheets/navbar.css
@@ -18,7 +18,7 @@
@media only screen and (max-width: 993px) {
body.has-fixed-sidenav {
- padding-left: 0 !important;
+ padding-left: 0 !important;
}
}
diff --git a/app/assets/stylesheets/sidenav.css.scss b/app/assets/stylesheets/sidenav.css.scss
index 700cf7ca..cff23eaf 100644
--- a/app/assets/stylesheets/sidenav.css.scss
+++ b/app/assets/stylesheets/sidenav.css.scss
@@ -10,6 +10,12 @@
font-size: 24px;
border-bottom: 1px solid rgba(0,0,0,0.2);
box-sizing: content-box;
+
+ i.material-icons.right {
+ position: relative;
+ top: 8px;
+ left: 26px;
+ }
}
.collapsible .collapsible-header {
diff --git a/app/views/layouts/_sidenav.html.erb b/app/views/layouts/_sidenav.html.erb
index 66a06c7b..5eb36384 100644
--- a/app/views/layouts/_sidenav.html.erb
+++ b/app/views/layouts/_sidenav.html.erb
@@ -1,6 +1,9 @@
-
<%= link_to root_path, class: 'logo-container white-text' do %>
+
+ dashboard
+
Notebook.ai
<% end %>
@@ -75,19 +78,6 @@
Home
<% end %>
- -
- <%= link_to main_app.thredded_path, class: 'waves-effect' do %>
-
- forum
-
- Discussions
- <% if @unread_threads > 0 || @unread_private_messages > 0 %>
-
- <%= @unread_threads %><%= "/#{@unread_private_messages}" if @unread_private_messages > 0 %>
-
- <% end %>
- <% end %>
-
-->
@@ -156,6 +146,19 @@
<% end %>
+
+ <%= link_to main_app.thredded_path, class: 'waves-effect' do %>
+
+ forum
+
+ Discussions
+ <% if @unread_threads > 0 || @unread_private_messages > 0 %>
+
+ <%= @unread_threads %><%= "/#{@unread_private_messages}" if @unread_private_messages > 0 %>
+
+ <% end %>
+ <% end %>
+
<%= link_to main_app.prompts_path, class: 'waves-effect' do %>
lightbulb_outline
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index f8185b01..f9e9dff5 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -8,15 +8,10 @@
<%= render 'layouts/navbar' %>
<% if user_signed_in? %>
<% end %>