synapse-react-client 3.1.57 → 3.1.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/style/components/_submission-page.scss +5 -1
- package/dist/umd/synapse-react-client.development.css +1 -1
- package/dist/umd/synapse-react-client.development.css.map +2 -2
- package/dist/umd/synapse-react-client.development.js +1 -1
- package/dist/umd/synapse-react-client.development.js.map +1 -1
- package/dist/umd/synapse-react-client.production.min.css +1 -1
- package/dist/umd/synapse-react-client.production.min.js +1 -1
- package/package.json +1 -1
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
.SubmissionSummaryGrid {
|
|
30
30
|
display: grid;
|
|
31
31
|
column-gap: 10px;
|
|
32
|
-
|
|
32
|
+
// Grid column maximum is 50% minus 5px to account for the column gap
|
|
33
|
+
grid-template-columns: minmax(auto, calc(50% - 5px)) minmax(
|
|
34
|
+
auto,
|
|
35
|
+
calc(50% - 5px)
|
|
36
|
+
);
|
|
33
37
|
|
|
34
38
|
.Key {
|
|
35
39
|
grid-column: 1;
|
|
@@ -23370,7 +23370,7 @@ input[type=radio] + span {
|
|
|
23370
23370
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid {
|
|
23371
23371
|
display: grid;
|
|
23372
23372
|
column-gap: 10px;
|
|
23373
|
-
grid-template-columns: auto auto;
|
|
23373
|
+
grid-template-columns: minmax(auto, calc(50% - 5px)) minmax(auto, calc(50% - 5px));
|
|
23374
23374
|
}
|
|
23375
23375
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .Key {
|
|
23376
23376
|
grid-column: 1;
|