Can I somehow make a pmatrix play nicely with a tabular environment? I tried using \def\arraystretch{1.5} but it made everything bigger. Here's a minimal example that shows my problem. I'm using XeLaTeX.
\documentclass[12pt,a4paper]{report}
\usepackage[english, polish]{babel}
\usepackage{graphicx}
\usepackage{float}
\usepackage{amsmath}
\usepackage{amsfonts}
\begin{document}
\begin{table}[H]
\centering
\resizebox{\textwidth}{!}{%
\begin{tabular}{|c|c|c|}
\hline
Ciąg do zakodowania & Wykorzystana bramka & Powstały stan kwantowy \\ \hline
00 & $ \mathbb{I} = \begin{bmatrix} 1 & 0 \\ 0 & 1\end{bmatrix} $ & \\ \hline
10 & $ Z = \begin{bmatrix} 1 & 0 \\ 0 & -1 \end{bmatrix} $ & \\ \hline
01 & $ X = \begin{bmatrix} 0 & 1 \\ 1 & 0 \end{bmatrix}$ & \\ \hline
11 & $ Z*X $ & \\ \hline
\end{tabular}%
}
\caption{A little bit too cramped :(}
\label{my-label}
\end{table}
\end{document}

