Skip to content

Commit

Permalink
Merge pull request #1182 from dradis/fix/version-position
Browse files Browse the repository at this point in the history
Fix version position in sidebar
  • Loading branch information
MattBudz committed Apr 18, 2024
2 parents 720a631 + 03710ec commit de8b258
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Upgraded gems:
- nokogiri, rails
- Bugs fixes:
- Sidebar: Prevent version number from overlapping listed records
- Tylium: Fix redirection when updating an issue or content block
- Bug tracker items:
- [item]
Expand Down
3 changes: 3 additions & 0 deletions app/assets/stylesheets/tylium/modules/_secondary_sidebar.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
.secondary-sidebar {
background-color: $sidebarActiveColor;
color: $lightColor;
display: flex;
flex-direction: column;
flex-grow: 1;
font-size: 0.9rem;
padding: 0.6rem 1rem;

Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/tylium/_sidebar.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<%= render 'layouts/tylium/nodes' %>
<% if content_for?(:sidebar) %>
<div class="secondary-sidebar mt-4 h-100">
<div class="secondary-sidebar mt-4">
<%= yield :sidebar %>
</div>
<% end %>
Expand Down

0 comments on commit de8b258

Please sign in to comment.