Skip to content
Snippets Groups Projects
Commit 92d8b064 authored by jojohoch's avatar jojohoch
Browse files

[player] Replace flex layout module in KeyboardComponent

parent 59a9fcbd
No related branches found
No related tags found
No related merge requests found
<div class="keyboard-container"
(mousedown)="$event.preventDefault(); $event.stopPropagation()">
<div *ngIf="showFrenchCharacters"
fxLayout="row wrap"
fxLayoutAlign="space-between center"
class="specialCharacters">
class="specialCharacters fx-space-between-center-wrap">
<aspect-keyboard-key *ngFor="let key of frenchRow; let i = index"
class="key"
[key]="key"
......
......@@ -10,6 +10,15 @@
background-color: grey;
}
.fx-space-between-center-wrap {
box-sizing: border-box;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.key {
margin: 4px;
min-height: 50px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment