I am trying to make the MO Diagram for F_2^+2 in LaTeX and I can't figure out how to get the p sigma orbital to be higher than the two p pi orbitals. The LaTeX stuff below is what I have right now and I have attached a picture of what I want. Does anyone know how to edit the MO Diagram to get this?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{chemfig}
\usepackage{modiagram}
\usepackage{mhchem}
\title{mo diagram}
\author{mary stuart}
\date{November 2021}
\begin{document}
\maketitle
\begin{enumerate}
\item Using the molecular orbital diagram below, fill in the electrons for the ground electronic state of the F$_2^{+}$ molecule. Determine its ground electronic state term symbol, including the spin multiplicity.
\begin{center}
\begin{modiagram}[labels,names,style=plain]
\atom[F]{left}{
2p = {0;pair,pair,up}
}
\atom[F]{right}{
2p = {0;pair,up,up}
}
\molecule[$F_2^+$]{
2pMO = {1.8,.4;pair,pair,pair,pair,up} ,
color = {2piy* = black}
}
\end{modiagram}
\begin{modiagram}[labels]
\atom [F]{left} {2s = {;pair}}
\atom [F]{right}{2s = {;pair}}
\molecule [\ce{$F_2$}]{
2sMO ={.75;pair},
label = {2sigma = 2p$\sigma$}}
\end{modiagram}
\end{center}
\end{enumerate}
\end{document}


