1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-23 01:27:14 +02:00

Fix map roundness when no markdown #587

This commit is contained in:
Patrik J. Braun 2023-08-06 21:57:35 +02:00
parent 287620a7c3
commit 2a82dad30e
2 changed files with 3 additions and 4 deletions

View File

@ -49,10 +49,7 @@ app-gallery-map {
position: absolute; position: absolute;
right: 4px right: 4px
} }
.blog-wrapper + app-gallery-map {
border-top-right-radius: var(--bs-border-radius);
border-bottom-right-radius: var(--bs-border-radius);
}
.directories { .directories {
margin-right: 2px; margin-right: 2px;

View File

@ -52,6 +52,8 @@
</button> </button>
</div> </div>
<app-gallery-map <app-gallery-map
class="rounded"
[class.rounded-start-0]="ShowMarkDown"
*ngIf="ShowMap" *ngIf="ShowMap"
[photos]="directoryContent?.media | photosOnly" [photos]="directoryContent?.media | photosOnly"
[gpxFiles]="directoryContent?.metaFile | gpxFiles"></app-gallery-map> [gpxFiles]="directoryContent?.metaFile | gpxFiles"></app-gallery-map>