Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…-2024 into feat/map-icons
  • Loading branch information
RafaeloxMC committed Aug 2, 2024
2 parents 8c9150a + b10a495 commit 1b0eb6e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 26 deletions.
9 changes: 0 additions & 9 deletions src/app/components/activity-card/activity-card.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,6 @@
class="text-xl font-bold w-full mr-2 overflow-hidden max-w-[330px] overflow-ellipsis h-fit text-nowrap">
{{ activity?.name || "No name provided" }}
</h1>
<!-- <div
class="min-w-16 max-w-16 min-h-7 max-h-7 p-2 rounded-md bg-slate-100 flex flex-row justify-start items-center">
<span class="w-full overflow-hidden overflow-ellipsis font-semibold">{{
activity?.rating || "0,0"
}}</span>
<i
class="bi bi-star-fill text-xl w-full min-w-[20px] text-center text-blue-700"></i>
</div> -->
<!-- TODO: add later with rating feature -->
</div>

<div
Expand Down
9 changes: 0 additions & 9 deletions src/app/components/feed-settings/feed-settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,4 @@
<i class="bi bi-filter-left"></i>
<span class="ml-2">Filter</span>
</div>
<!-- <div class="p-2 rounded-md bg-slate-100 cursor-pointer transition-all ease-in duration-75 hover:bg-slate-200 select-none">
<i class="bi bi-geo-fill"></i>
<span class="ml-2">Near you</span>
</div> -->
<!-- <div class="p-2 rounded-md bg-slate-100 cursor-pointer transition-all ease-in duration-75 hover:bg-slate-200 select-none">
<i class="bi bi-bookmark-fill"></i>
<span class="ml-2">Saved</span>
</div> -->
<!-- TODO: future settings -->
</div>
9 changes: 3 additions & 6 deletions src/app/components/filter/filter.component.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
<button type="button" class="position" data-bs-toggle="modal" data-bs-target="#exampleModal">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" class="bi bi-funnel"
viewBox="0 0 16 16">
<path d="M1.5 1.5A.5.5 0 0 1 2 1h12a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-.128.334L10 8.692V13.5a.5.5 0 0 1-.342.474l-3 1A.5.5 0 0 1 6 14.5V8.692L1.628 3.834A.5.5 0 0 1 1.5 3.5zm1 .5v1.308l4.372 4.858A.5.5 0 0 1 7 8.5v5.306l2-.666V8.5a.5.5 0 0 1 .128-.334L13.5 3.308V2z"/>
</svg>
</button>
<div class="-translate-y-0.5">
<i data-bs-toggle="modal" data-bs-target="#exampleModal" class="bi bi-funnel w-[50px] h-full text-center text-gray-400 group-hover:text-black transition-all ease-in pl-2 border-l border-solid -mr-1 border-gray-400 cursor-pointer"></i>
</div>
<div class="modal fade z-50" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/navbar/navbar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</a>
</div>
<div
class="flex flex-row w-11/12 min-h-[40px] max-w-[800px] ml-2 mr-2 group bg-blue-100 rounded-full mt-1 mb-1 justify-start text-[#000] items-center">
class="flex flex-row w-11/12 min-h-[40px] max-w-[800px] ml-2 mr-2 group bg-blue-100 rounded-full mt-1 mb-1 justify-center text-[#000] items-center">
<i class="bi bi-search w-[50px] text-center text-gray-400 group-hover:text-black group-active:text-black transition-all ease-in"></i>
<input
autocomplete="off"
Expand All @@ -16,7 +16,7 @@
(input)="onSearch()"
(keydown)="onEnterKey($event)"
/>
<app-home-filter></app-home-filter>
<app-home-filter></app-home-filter>
</div>
@if ( !isMapUrl) {
<button routerLink="/map" class="btn hide-on-mobile rounded-full"><i class="bi bi-map"></i></button>
Expand Down

0 comments on commit 1b0eb6e

Please sign in to comment.