Skip to content

Commit

Permalink
Revert "task/tup-534 Adds in media query for tables (#275)"
Browse files Browse the repository at this point in the history
This reverts commit aeb1b32.
  • Loading branch information
wesleyboar committed Mar 1, 2024
1 parent 9569c2c commit 91a54c1
Show file tree
Hide file tree
Showing 21 changed files with 116 additions and 237 deletions.
2 changes: 1 addition & 1 deletion dist/core-styles.base.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/core-styles.cms.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/core-styles.portal.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/elements/table--basic.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/elements/table--nested.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/elements/table.cms.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/elements/table.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions fractal.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,6 @@ engine.handlebars.registerHelper('eq', function(a, b) {
engine.handlebars.registerHelper('has', function(array, item) {
return array.includes(item);
});
engine.handlebars.registerHelper('getColFromRow', function(row, val, cols) {
if ( ! cols ) return '';

const index = Object.entries(row).findIndex(el => el[1] === val);
const col = cols[index];

return col;
});

// Export
module.exports = fractal;
1 change: 1 addition & 0 deletions src/lib/_imports/core-styles.cms.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@
@import url("./trumps/s-drop-cap.css");
@import url("./trumps/s-footer.css");
@import url("./trumps/s-footer--thick.css");
@import url("./trumps/s-truncated-table.css");
2 changes: 2 additions & 0 deletions src/lib/_imports/core-styles.portal.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
/* ELEMENTS */
@import url("./elements/root--portal.css");
@import url("./elements/sticky-footer.css");
@import url("./elements/table.portal.css");

/* OBJECTS */
@import url("./objects/o-flex-item-table-wrap.css");
Expand All @@ -33,3 +34,4 @@
@import url("./trumps/s-footer.css");
@import url("./trumps/s-footer--thin.css");
@import url("./trumps/s-form-page.css");
@import url("./trumps/s-truncated-table.css");
Loading

0 comments on commit 91a54c1

Please sign in to comment.