Potential fix for #573

None of the test cases appear to reproduce the issue so live testing it is.
This commit is contained in:
2024-07-01 18:10:41 +01:00
parent ddce9752c6
commit 02a5a94fbb

View File

@@ -3,7 +3,7 @@
<style> <style>
#event_table { #event_table {
display: grid; display: grid;
grid-template-columns: max-content auto; grid-template-columns: max-content min-content minmax(max-content, 1fr) max-content;
column-gap: 1em; column-gap: 1em;
} }
.eventgrid { .eventgrid {
@@ -11,14 +11,9 @@
grid-column: 1/5; grid-column: 1/5;
grid-template-columns: subgrid; grid-template-columns: subgrid;
padding: 1em; padding: 1em;
dt { dt, dd { display: block; float: left; }
float: left; dt { clear: both; }
clear: left; dd { float: right; }
margin-right: 10px;
}
dd {
margin-left: 0px;
}
} }
.grid-header { .grid-header {
border-bottom: 1px solid grey; border-bottom: 1px solid grey;