transform keys and text service

This commit is contained in:
2020-03-16 21:07:11 +01:00
committed by smuddy
parent 8c000867cb
commit 7d58dd9bdd
18 changed files with 335 additions and 36 deletions

View File

@@ -1,13 +1,49 @@
.song {
border-bottom: 1px solid #ccc;
display: flex;
align-items: center;
justify-content: space-between;
display: grid;
grid-template-columns: 20px 20px auto 70px 25px;
@media screen and (max-width: 860px) {
grid-template-columns: 40px 40px auto 70px 45px;
}
grid-template-areas: "up down title keys delete";
& > * {
display: flex;
align-items: center;
}
overflow: hidden;
}
mat-form-field {
width: 40px;
margin: -24px 0 -20px 0;
}
.btnUp {
grid-area: up;
}
.btnDown {
grid-area: down;
}
.title {
grid-area: title;
}
.keys {
grid-area: keys;
justify-content: flex-end;
}
.btnDelete {
grid-area: delete;
justify-content: flex-end;
}
.menu {
display: flex;
}
button {