Remove inline css

This commit is contained in:
Laura Hausmann 2023-02-11 02:21:25 +01:00
parent 7aed7cd59f
commit 09cb08c7ff
Signed by: zotan
GPG key ID: D044E84C5BE01605
2 changed files with 5 additions and 1 deletions

View file

@ -81,7 +81,7 @@
<a class="btn btn-lg px-1 btn-secondary dropdown-toggle" href="#" role="button" id="dropdownMenuLink" data-bs-toggle="dropdown" aria-expanded="false">
Actions
</a>
<div class="dropdown-menu p-1" aria-labelledby="dropdownMenuLink" style="min-width: max-content;">
<div class="dropdown-menu p-1 mw-max-content" aria-labelledby="dropdownMenuLink">
<!-- Inline CSS, sets minimum width of drop down to maxium size of content -->
<div class="d-grid gap-1">
<!-- Make sure these buttons match the big layout ones above-->

View file

@ -298,3 +298,7 @@ button.accept-policy {
transition: 0.3s ease;
filter:blur(4px) grayscale(100%);
}
.mw-max-content {
min-width: max-content;
}