# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
#
from .base import HeaderElement


class Podtytul(HeaderElement):
    TXT_BOTTOM_MARGIN = 1

    HTML_CLASS = 'wl subtitle'

    EPUB_TAG = 'h2'
    EPUB_CLASS = 'insubtitle'

