a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[frontend/components] Fix Drive path icon

pancakes ddab5caa b95595a4

+6 -1
+1 -1
Iceshrimp.Frontend/Pages/DrivePage.razor
··· 67 67 { 68 68 <div class="folder-details"> 69 69 <ol class="folder-path"> 70 - <li><Icon Name="Icons.Folder"/></li> 70 + <li class="path-icon"><Icon Name="Icons.Folder" Size="1.3em"/></li> 71 71 @if (Folder.Path != null) 72 72 { 73 73 @if (Folder.Path.Count == 0 || Folder.Path.First().ParentId == null)
+5
Iceshrimp.Frontend/Pages/DrivePage.razor.css
··· 26 26 padding: 0; 27 27 } 28 28 29 + .path-icon { 30 + line-height: 1; 31 + align-self: center; 32 + } 33 + 29 34 .path-entry a:visited { 30 35 color: var(--link); 31 36 }