mobile style enhanchement
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
<mat-checkbox [(ngModel)]="showText">Text anzeigen</mat-checkbox>
|
<mat-checkbox [(ngModel)]="showText">Text anzeigen</mat-checkbox>
|
||||||
|
|
||||||
<div *ngIf="showSongs && songs" class="song-list">
|
<div *ngIf="showSongs && songs" class="song-list">
|
||||||
<app-song *ngFor="let song of showSongs"
|
<app-song *ngFor="let song of showSongs" class="song-row"
|
||||||
[showId]="showId"
|
[showId]="showId"
|
||||||
[showSong]="song"
|
[showSong]="song"
|
||||||
[showSongs]="showSongs"
|
[showSongs]="showSongs"
|
||||||
|
|||||||
@@ -5,3 +5,9 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.song-row:not(:last-child) {
|
||||||
|
display: block;
|
||||||
|
border-bottom: 1px solid #0002;
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<div *ngIf="_song" class="row">
|
<div *ngIf="_song">
|
||||||
<div class="song">
|
<div class="song">
|
||||||
<app-menu-button (click)="reorder(true)" [icon]="faUp" class="btnUp"></app-menu-button>
|
<app-menu-button (click)="reorder(true)" [icon]="faUp" class="btnUp"></app-menu-button>
|
||||||
<app-menu-button (click)="reorder(false)" [icon]="faDown" class="btnDown"></app-menu-button>
|
<app-menu-button (click)="reorder(false)" [icon]="faDown" class="btnDown"></app-menu-button>
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
.row {
|
|
||||||
border-bottom: 1px solid #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.song {
|
.song {
|
||||||
|
|||||||
@@ -54,7 +54,12 @@
|
|||||||
|
|
||||||
.section {
|
.section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
border-left: 3px solid #ddd;
|
@media screen and (max-width: 860px) {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
border-left: 3px solid #0002;
|
||||||
|
padding-left: 5px;
|
||||||
|
margin-left: -8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chorus {
|
.chorus {
|
||||||
|
|||||||
Reference in New Issue
Block a user