src/ApplicationBundle/Resources/views/framework/_deeplinkmodal_css.html.twig line 1

Open in your IDE?
  1. {#
  2.   framework/_deeplinkmodal_css.html.twig
  3.   ==========================================================================
  4.   Shared block: #deepLinkModal p
  5.   De-duplicated from 2 templates. Lifted VERBATIM — same rules, same order —
  6.   and each call site keeps the include AT THE POSITION its <style> occupied, so
  7.   the cascade is unchanged. This is a de-duplication, not a restyle.
  8.   Self-contained: the block interpolates nothing from the surrounding context.
  9.   NOTE: included from CompanyGroupBundle templates as well as ApplicationBundle
  10.   ones. Both bundles share one Twig environment so @Application resolves from
  11.   either; those templates are near-copies of each other to begin with.
  12.   ==========================================================================
  13. #}
  14. <style>
  15.     @media (min-width: 320px) and (max-width: 480px) {
  16.         #deepLinkModal p {
  17.             font-weight: bold;
  18.             font-size: 12px !important;
  19.             line-height: 1.5 !important;
  20.         }
  21.     }
  22. </style>