Allow table buttons to wrap

This commit is contained in:
Andrew Kingston 2022-04-08 10:35:13 +01:00
parent d7f627e9cc
commit 56933db04f
1 changed files with 8 additions and 0 deletions

View File

@ -217,5 +217,13 @@
flex-direction: row;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.left-buttons,
.right-buttons {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
</style>