I'm in a rather specific/peculiar situation: For aesthetic reasons, I want certain entries in a tikz-cd diagram to use "large" symbols (in my case, I'm using the \displaystyle version of \varinjlim with a subscript, but this issue work similarly for e.g. large sum signs). At the same time, I want to use symbols instead of some arrows (in my case, I'm using the \cong sign). For this, I use the answer to this question.
Since these symbols do not fill all of the space between rows, the look of the diagram depends quite strongly on their vertical placement. My problem is that the vertical extent of the big symbol in one of the entries is causing a vertical offset between the arrow-replacing symbols in different columns, which looks very ugly. I'm wondering if there is a proper way to correct this---something in the spirit of \mathrlap, perhaps?
This is a minimal working example:
\documentclass{article}
\usepackage{tikz-cd}
\begin{document}
\begin{tikzcd}
\displaystyle \sum_\epsilon \ar[draw=none]{d}[sloped,auto=false]{\cong}
& A
\ar[draw=none]{d}[sloped,auto=false]{\cong} \\
B
& C
\end{tikzcd}
\end{document}

