diff --git a/sass/_display.scss b/sass/_display.scss index 4fdf44c..ff6eb3f 100644 --- a/sass/_display.scss +++ b/sass/_display.scss @@ -2,6 +2,9 @@ -----------------------------------------------------------------------------*/ [display~=initial] { display: initial !important } +[display~=table] { display: table !important } +[display~=table-cell] { display: table-cell !important } +[display~=table-row] { display: table-row !important } [display~=hidden], [hidden] { display: none } [display~=visible] { visibility: visible } [display~=insivible] { visibility: hidden } diff --git a/sass/_grid.scss b/sass/_grid.scss index f3962f5..be89893 100644 --- a/sass/_grid.scss +++ b/sass/_grid.scss @@ -14,7 +14,7 @@ [cols~='9'] { width: 75%; } [cols~='10'] { width: 83.33333%; } [cols~='11'] { width: 91.66667%; } -[cols~='12'] { width: 100%; } +[cols~='12'],[width~="full"] { width: 100%; } /* =Grid @@ -32,3 +32,6 @@ [grid~="8"] > * { width:12.5% } [grid~="9"] > * { width:11.111111111% } [grid~="10"] > * { width:10% } + +/* =width +-----------------------------------------------------------------------------*/ \ No newline at end of file