mirror of https://github.com/kubernetes/kops.git
Changing table width to 'fit-content' for kops_feature_table
This commit is contained in:
parent
0c3296d2fb
commit
de5efe6779
|
@ -10,4 +10,8 @@
|
|||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.kops_feature_table .md-typeset__table table{
|
||||
max-width: fit-content;
|
||||
}
|
|
@ -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():
|
||||
|
|
Loading…
Reference in New Issue