Skip to content
Snippets Groups Projects
Commit 8e3cce78 authored by DCoded's avatar DCoded
Browse files

Fixed CSS styling

parent cc2458cd
No related branches found
No related tags found
1 merge request!10576Elite Breeder Exam rework
......@@ -100,6 +100,15 @@ div.grid-2columns-auto {
border-spacing: 1em 0;
}
.padded-columns td {
padding: 0 1em;
}
.padded-rows {
border-collapse: separate;
border-spacing: 0 1em;
}
.space-evenly {
justify-content: space-evenly;
}
......
......@@ -21,7 +21,7 @@ App.Interact.eliteBreedingExam = function(slave = null) {
App.Events.addNode(frag, r, "div");
r = [];
const table = App.UI.DOM.appendNewElement("table", frag);
const table = App.UI.DOM.appendNewElement("table", frag, null, ["padded-columns"]);
/** @type {[(slave: FC.SlaveState) => boolean, string][]} */
const checks = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment