Skip to content

Commit

Permalink
Potential fix for #573
Browse files Browse the repository at this point in the history
None of the test cases appear to reproduce the issue so live testing it is.
  • Loading branch information
FreneticScribbler committed Jul 1, 2024
1 parent ddce975 commit 02a5a94
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions RIGS/templates/partials/event_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,17 @@
<style>
#event_table {
display: grid;
grid-template-columns: max-content auto;
grid-template-columns: max-content min-content minmax(max-content, 1fr) max-content;
column-gap: 1em;
}
.eventgrid {
display: inherit;
grid-column: 1/5;
grid-template-columns: subgrid;
padding: 1em;
dt {
float: left;
clear: left;
margin-right: 10px;
}
dd {
margin-left: 0px;
}
dt, dd { display: block; float: left; }
dt { clear: both; }
dd { float: right; }
}
.grid-header {
border-bottom: 1px solid grey;
Expand Down

0 comments on commit 02a5a94

Please sign in to comment.