I have nodes with text inside, however the nodes are too large for the text, with large paddings.
I want to keep the text size the same, but make the box tighter. I've tried varying text height and width, as well as inner seps, however these only move the text around.
The code below produces the following output:
\documentclass[tikz, border=2mm]{standalone}
\usetikzlibrary{positioning,shapes,arrows,backgrounds,external,fit,calc}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
\definecolor{CoreBlue}{HTML}{5b9bd5}
\tikzset{
Core/.style={rectangle, draw, fill=CoreBlue, draw opacity=0, text=white},
}
\begin{document}
\begin{tikzpicture}[font={\sffamily\scriptsize}]
\node[Core,minimum width=12mm,minimum height=8mm, anchor=west,
% inner sep=-10mm, % no change
% inner ysep=-10mm, % no change
% text height=1mm, % changes text position, but not node size
% text width=0.2cm, % changes text position, but not node size
] (1) at (0,0) {\scriptsize Lorem};
\end{tikzpicture}
\end{document}




