Skip to content

Commit

Permalink
changed class full -> ft_full_size
Browse files Browse the repository at this point in the history
  • Loading branch information
harshdoesdev committed Nov 8, 2023
1 parent 1b3921c commit 27cdfe7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fastn-js/js/dom.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ fastn_dom.styleClasses = "";
fastn_dom.InternalClass = {
FT_COLUMN: 'ft_column',
FT_ROW: 'ft_row',
FULL: "full",
FT_FULL_SIZE: "ft_full_size",
};

fastn_dom.codeData = {
Expand Down
2 changes: 1 addition & 1 deletion fastn-js/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let fastn_utils = {
css.push(fastn_dom.InternalClass.FT_COLUMN);
} else if (kind === fastn_dom.ElementKind.Document) {
css.push(fastn_dom.InternalClass.FT_COLUMN);
css.push(fastn_dom.InternalClass.FULL);
css.push(fastn_dom.InternalClass.FT_FULL_SIZE);
} else if (kind === fastn_dom.ElementKind.Row) {
css.push(fastn_dom.InternalClass.FT_ROW);
} else if (kind === fastn_dom.ElementKind.IFrame) {
Expand Down
2 changes: 1 addition & 1 deletion ftd/ftd-js.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ pre code {
justify-content: start
}

.full {
.ft_full_size {
width: 100%;
height: 100%;
}
Expand Down
2 changes: 1 addition & 1 deletion ftd/t/js/22-document.html

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

2 changes: 1 addition & 1 deletion ftd/t/js/41-document-favicon.html

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

2 changes: 1 addition & 1 deletion ftd/t/js/72-document-breakpoint.html

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

0 comments on commit 27cdfe7

Please sign in to comment.