mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-20 11:31:49 +02:00
Fix buttons overflowing screen
This commit is contained in:
parent
0de1c52535
commit
98baae4fee
@ -22,4 +22,15 @@ main {
|
|||||||
/* Set the fixed height of the footer here */
|
/* Set the fixed height of the footer here */
|
||||||
/*line-height: 60px; /* Vertically center the text there */
|
/*line-height: 60px; /* Vertically center the text there */
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.topbutton {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.topbutton {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -6,10 +6,10 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="card" style="width: 100%">
|
<div class="card" style="width: 100%">
|
||||||
<div class="card-body d-flex flex-row">
|
<div class="card-body">
|
||||||
<button type="button" class="btn btn-danger m-2"
|
<button type="button" class="topbutton btn btn-danger"
|
||||||
onclick="confirmDeleteAllEntries()"><i class="fas fa-trash mr-2"></i>Alle Einträge löschen</button>
|
onclick="confirmDeleteAllEntries()"><i class="fas fa-trash mr-2"></i>Alle Einträge löschen</button>
|
||||||
<button type="button" class="btn btn-danger m-2"
|
<button type="button" class="topbutton btn btn-danger"
|
||||||
onclick="confirmUpdateSongDatabase()"><i class="fas fa-file-import mr-2"></i>Song-Datenbank
|
onclick="confirmUpdateSongDatabase()"><i class="fas fa-file-import mr-2"></i>Song-Datenbank
|
||||||
aktualisieren</button>
|
aktualisieren</button>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user