BibLaTeX seems to calculate wrong indentation when I change the fontsize. The lines following the first one are a little to the left than the first line (see the red line).

MWE:
\documentclass[titlepage,listof=totoc,final]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[style=alphabetic,backend=biber,maxnames=4,minnames=3,maxbibnames=99,block=space,abbreviate=true,firstinits=true]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@online{GLS:datasheet,
title = "GLS Datasheet",
organization = "Optoelectronics Research Centre",
howpublished = "Website",
date = "2004-09",
urldate = "2013-07-01",
url = "http://www.southampton.XXXX",
address = "Southampton, United Kingdom"
}
@article{Labadie:First_fringes,
author = {Labadie, L. and Mart\'{\i}n, G. and Anheier, N. C. and Arezki, B. and Qiao, H. A. and Bernacki, B. and Kern, P.},
title = {First fringes with an integrated-optics beam combiner at 10},
DOI= "10.1051/0004-6361/201116727",
journal = {A\&A},
year = 2011,
volume = 531,
pages = "A48"
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\KOMAoptions{fontsize=12pt}
\nocite{*}
\printbibliography
\end{document}
What can be done to avoid this?
P.S.: Some texts in my theses have to be 10pt, and others (like the bibliography) 12pt. Sadly, this is given to me, and I can't do anything about it.
\bibfont. Inbiblatex.defthis is defined as:\newcommand*{\bibfont}{\normalfont\normalsize}. So you could use\renewcommand*{\bibfont}{\normalfont\changefontsizes{12pt}}in the preamble. – Audrey Apr 12 '13 at 20:34