CSS: Issues with the projects page [SCI-8507] (#5648)

* CSS: Issues with the projects page [SCI-8504]

* css fix

* added empty cells for folder row
This commit is contained in:
G-Chubinidze 2023-06-22 12:38:36 +04:00 committed by GitHub
parent 469c35ed72
commit dfdab6e051
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -986,9 +986,8 @@ li.module-hover {
.name {
align-items: center;
display: flex;
grid-column: 6 span;
grid-column: 1 span;
line-height: 1.25em;
max-width: 200px;
}
.description {

View file

@ -26,6 +26,12 @@
<%= folder.name %>
</div>
<% end %>
<% 5.times do %>
<div class="name table-cell">
</div>
<% end %>
<div class="description">
<%= t('projects.index.folder.description', projects_count: folder.projects_count, folders_count: folder.folders_count) %>
</div>