Changing table width to 'fit-content' for kops_feature_table

This commit is contained in:
MoShitrit 2020-07-14 11:22:40 -04:00
parent 0c3296d2fb
commit de5efe6779
2 changed files with 7 additions and 1 deletions

View File

@ -10,4 +10,8 @@
.hidden {
display: none;
}
.kops_feature_table .md-typeset__table table{
max-width: fit-content;
}

View File

@ -55,7 +55,9 @@ def define_env(env):
separators,
values
]
return '\n'.join(table)
table = '\n'.join(table)
table = f'<div class="kops_feature_table">{table}</div>'
return table
def main():