File tree Expand file tree Collapse file tree 1 file changed +38
-2
lines changed Expand file tree Collapse file tree 1 file changed +38
-2
lines changed Original file line number Diff line number Diff line change @@ -354,12 +354,48 @@ main {
354
354
word-break : break-word ;
355
355
}
356
356
357
+ /* SCSS Related to the Metrics Table */
358
+
359
+ @media (max-width : 767px ) { // for mobile devices, Display the names, Stability levels & types
360
+
361
+ table .metrics {
362
+ th :nth-child (n + 4 ),
363
+ td :nth-child (n + 4 ) {
364
+ display : none ;
365
+ }
366
+
367
+ td .metric_type {
368
+ min-width : 7em ;
369
+ }
370
+ td .metric_stability_level {
371
+ min-width : 6em ;
372
+ }
373
+ }
374
+ }
375
+
376
+ table .metrics tbody { // Tested dimensions to improve overall aesthetic of the table
377
+ tr {
378
+ td {
379
+ font-size : smaller ;
380
+ }
381
+ td .metric_labels_varying {
382
+ min-width : 9em ;
383
+ }
384
+ td .metric_type {
385
+ min-width : 9em ;
386
+ }
387
+ td .metric_description {
388
+ min-width : 10em ;
389
+ }
390
+
391
+ }
392
+ }
393
+
357
394
table .no-word-break td ,
358
395
table .no-word-break code {
359
396
word-break : normal ;
360
- }
361
397
}
362
-
398
+ }
363
399
364
400
// blockquotes and callouts
365
401
You can’t perform that action at this time.
0 commit comments