Skip to content
Snippets Groups Projects
Commit 3757e0d1 authored by Lukas Raska's avatar Lukas Raska Committed by Guillaume Delhumeau
Browse files

[XWIKI-10118] Fix typo in variable name

(cherry picked from commit c3c735ca)
parent 267cbd3c
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@
/* Compute the percent of the screen width of a column. Round so that the java upper rounding doesn't screw IE, and because 2 decimals should be enough for everyone. */
#set($rawComputedColumnWidth = (($columnsTotalWidth - $columnPadding * 2 * ($columns - 1)) / $columns))
#set($computedColumnWidth = $mathtool.roundTo(2, $rawComputedColumnWidth))
.container-columns-$column .column{
.container-columns-$columns .column{
width: $computedColumnWidth%;
padding-right: $columnPadding%;
padding-left: $columnPadding%;
......
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