We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b21d1ff commit 64e724bCopy full SHA for 64e724b
1 file changed
_sass/custom/custom.scss
@@ -271,6 +271,19 @@ table.sml-table {
271
width: 50px;
272
}
273
274
+/* Container using flexbox to lay out the two table groups side-by-side */
275
+.tables-container {
276
+ display: flex;
277
+ gap: 20px; /* Adjust gap as needed */
278
+ justify-content: space-between;
279
+}
280
+
281
+/* Optional: ensure each table group takes roughly 50% of container's width */
282
+.table-group {
283
+ flex: 1; /* Each group expands equally */
284
+ /* Or you can use a fixed width such as: width: 48%; */
285
286
287
// 0007
288
289
.nric-blue-sml {
0 commit comments