I am drawing a fancy box around theorem environment using tcolorbox package. The content of the environment contain horizontal enumerate and I prefer tasks package. The default box setting work perfectly fine with the contents. However, when I reduce the frame line thickness, it turns out to be a problem (please refer to the MWE and screenshots). So what is the matter? Is it a bug of tcolorbox package?
\documentclass[11pt,a4paper]{book}
\usepackage[margin=1in,bindingoffset=1cm]{geometry}
\usepackage{tcolorbox}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{tasks}
\newtheorem{example}{Example}
%\tcolorboxenvironment{example}{colframe=red!70!black,colback=magenta!9!white} % this work perfectly but the frame line is too thick.
\tcolorboxenvironment{example}{colframe=red!70!black,colback=magenta!9!white,boxrule=1pt}% adding boxrule=1pt key cause the problem
\begin{document}
\begin{example}
Compute determinant of the following matrice:
\begin{tasks}[style=enumerate](3)
\task $ \displaystyle A=\begin{pmatrix}
1 & 2\\
3 & 4
\end{pmatrix} $
\task $ \displaystyle B=\begin{pmatrix}
0 & 2 & 4\\
6 & 8 & 10\\
12 & 14 & 16
\end{pmatrix} $
\task $ \displaystyle |C|=\begin{vmatrix}
a_{11} & a_{12}\\
a_{21} & a_{22}
\end{vmatrix} $
\end{tasks}
\end{example}
\end{document}

boxvalues lower than 1pt or greater than 1.2pt place three tasks on same line.boxvalues between (included) 1.pt and 1.2pt place third task on lower line. – Ignasi Apr 16 '18 at 14:58boxruleand for theboxrule=1.1ptplace the three task on one line (TeXlive 2017)! However, 1pt and 1.2 pt place the third task on another line. – Say OL Apr 16 '18 at 15:10boxoption or any other option but with specific values assigned tobox. I think your question is not clear on this point. – Ignasi Apr 16 '18 at 16:16