Skip to content
Snippets Groups Projects
Commit 7d772b3b authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Merge branch 'box-hider' into 'develop'

fix: use inline-block instead of block for box hider

See merge request R3/howto-cards!195
parents 94944824 f0847e5e
No related branches found
No related tags found
2 merge requests!197[release] Regular merge of develop,!195fix: use inline-block instead of block for box hider
Pipeline #35345 passed
......@@ -40,7 +40,7 @@ window.boxHider = (function() {
function UnhideElement(element) {
if (element instanceof HTMLElement) {
element.style['display'] = 'block';
element.style['display'] = 'inline-block';
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment